From ee0ecadfcb2257a9a41f0286997a1fe7ebcf008d Mon Sep 17 00:00:00 2001 From: junjie Date: Wed, 21 Jul 2021 18:57:16 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A0=86=E5=8F=A0bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/chart/view/ChartEdit.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/views/chart/view/ChartEdit.vue b/frontend/src/views/chart/view/ChartEdit.vue index dafc815361..82196ffaee 100644 --- a/frontend/src/views/chart/view/ChartEdit.vue +++ b/frontend/src/views/chart/view/ChartEdit.vue @@ -559,6 +559,7 @@ export default { view: { xaxis: [], yaxis: [], + extStack: [], show: true, type: 'bar', title: '', @@ -870,6 +871,7 @@ export default { this.view = JSON.parse(JSON.stringify(response.data)) this.view.xaxis = this.view.xaxis ? JSON.parse(this.view.xaxis) : [] this.view.yaxis = this.view.yaxis ? JSON.parse(this.view.yaxis) : [] + this.view.extStack = this.view.extStack ? JSON.parse(this.view.extStack) : [] this.view.customAttr = this.view.customAttr ? JSON.parse(this.view.customAttr) : {} this.view.customStyle = this.view.customStyle ? JSON.parse(this.view.customStyle) : {} this.view.customFilter = this.view.customFilter ? JSON.parse(this.view.customFilter) : {}