diff --git a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts index 044bfed52a..b5c98a51e9 100644 --- a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts +++ b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts @@ -1214,6 +1214,9 @@ export const dvMainStore = defineStore('dataVisualization', { paramValue = [paramValue] operator = 'eq' } else if (paramValue && Array.isArray(paramValue)) { + if (paramValue.length === 1) { + operator = 'eq' + } paramValueStr = '' paramValue.forEach((innerValue, index) => { if (index === 0) {