From e8aa874195f7a48bd5e8b14cd8a1c36943de05f7 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Mon, 23 Dec 2024 14:59:22 +0800 Subject: [PATCH] fix: Remove unnecessary print statements --- .../editor/editor-style/components/LegendSelector.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/LegendSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/LegendSelector.vue index 51bee1dd6f..b6fbefe8b7 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/LegendSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/LegendSelector.vue @@ -214,13 +214,10 @@ const changeLegendNumber = (prop?) => { prop ? changeMisc(prop) : '' } const changeRangeItem = (prop, index) => { - console.log(state.legendForm.miscForm.mapLegendCustomRange[index]) - console.log(mapLegendCustomRangeCacheList[index]) if (state.legendForm.miscForm.mapLegendCustomRange[index] === null) { state.legendForm.miscForm.mapLegendCustomRange[index] = cloneDeep( mapLegendCustomRangeCacheList[index] ) - console.log(state.legendForm.miscForm.mapLegendCustomRange[index]) } changeMisc(prop) }