diff --git a/frontend/src/components/widget/DeWidget/DeInputSearch.vue b/frontend/src/components/widget/DeWidget/DeInputSearch.vue index 65a43db761..89bb482618 100644 --- a/frontend/src/components/widget/DeWidget/DeInputSearch.vue +++ b/frontend/src/components/widget/DeWidget/DeInputSearch.vue @@ -74,7 +74,7 @@ export default { setCondition() { const param = { component: this.element, - value: !this.value ? [] : [this.value], + value: !this.value ? [] : Array.isArray(this.value) ? this.value : [this.value], operator: this.operator } this.inDraw && this.$store.commit('addViewFilter', param)