From f01bca3315366f9ef822bcfab60777fba930c92a Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Thu, 24 Jun 2021 15:07:25 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E4=BB=AA=E8=A1=A8?= =?UTF-8?q?=E6=9D=BF=E6=96=87=E5=AD=97=E6=90=9C=E7=B4=A2=E8=BF=87=E6=BB=A4?= =?UTF-8?q?=E7=BB=84=E4=BB=B6bug?= 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 3927e7822e..a0a0bf503f 100644 --- a/frontend/src/components/widget/DeWidget/DeInputSearch.vue +++ b/frontend/src/components/widget/DeWidget/DeInputSearch.vue @@ -46,7 +46,7 @@ export default { setCondition() { const param = { component: this.element, - value: [this.options.value], + value: !this.options.value ? [] : Array.isArray(this.options.value) ? this.options.value : [this.options.value], operator: this.operator } this.inDraw && this.$store.commit('addViewFilter', param) From 2ae993c07db68b7afe04a6665540163f6137cae0 Mon Sep 17 00:00:00 2001 From: junjie Date: Thu, 24 Jun 2021 15:18:19 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix:=E6=8A=98=E7=BA=BF=E5=9B=BE=E9=BB=98?= =?UTF-8?q?=E8=AE=A4tooltip=E6=8F=90=E7=A4=BA=E8=A7=A6=E5=8F=91=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/chart/chart/line/line.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/chart/chart/line/line.js b/frontend/src/views/chart/chart/line/line.js index ec7d326199..bce0a4ac29 100644 --- a/frontend/src/views/chart/chart/line/line.js +++ b/frontend/src/views/chart/chart/line/line.js @@ -58,7 +58,7 @@ export function stackLineOption(chart_option, chart) { baseLineOption(chart_option, chart) // ext - chart_option.tooltip.trigger = 'axis' + // chart_option.tooltip.trigger = 'axis' chart_option.series.forEach(function(s) { s.stack = 'stack' }) From c46ab5fd95087e2a1c000f6c042276cde4b35cc4 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Thu, 24 Jun 2021 15:20:41 +0800 Subject: [PATCH 3/3] =?UTF-8?q?feat:=20=E6=96=87=E6=A1=A3=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/layout/components/Topbar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/layout/components/Topbar.vue b/frontend/src/layout/components/Topbar.vue index 73b15d5afa..746bc4a530 100644 --- a/frontend/src/layout/components/Topbar.vue +++ b/frontend/src/layout/components/Topbar.vue @@ -38,7 +38,7 @@