From 8691e9b223abdd61105b9bc8be4eb5f01e12b4e4 Mon Sep 17 00:00:00 2001 From: wisonic-s Date: Mon, 25 Dec 2023 17:13:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=A7=86=E5=9B=BE):=20=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E9=9B=86=E5=88=87=E6=8D=A2=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/frontend/src/views/chart/view/ChartEdit.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/frontend/src/views/chart/view/ChartEdit.vue b/core/frontend/src/views/chart/view/ChartEdit.vue index e364ca5eed..a3fddc4be1 100644 --- a/core/frontend/src/views/chart/view/ChartEdit.vue +++ b/core/frontend/src/views/chart/view/ChartEdit.vue @@ -2436,6 +2436,7 @@ export default { } }, resetChangeTable() { + this.view.customFilter = {} const compareData = {} this.dimensionData.forEach(deimension => { compareData[deimension.originName] = deimension @@ -2443,7 +2444,7 @@ export default { this.quotaData.forEach(quota => { compareData[quota.originName] = quota }) - const compareCols = ['xaxis', 'xaxisExt', 'yaxis', 'yaxisExt', 'customFilter', 'extStack', 'extBubble', 'drillFields'] + const compareCols = ['xaxis', 'xaxisExt', 'yaxis', 'yaxisExt', 'extStack', 'extBubble', 'drillFields'] this.viewFieldChange(compareData, compareCols) }, viewFieldChange(compareData, compareCols) {