From 3089a502a3ceb505dacc98ceedf8700c1ec23e25 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 21 Dec 2021 11:56:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=87=E5=AD=97=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/widget/DeWidget/DeInputSearch.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)