diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue index fd533c2c3c..f87efaa7a5 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue @@ -31,12 +31,8 @@ const flowLineTypeOptions = [ { name: t('chart.map_line_type_arc_3d'), value: 'arc3d' } ] const state = reactive({ - lineForm: { - ...JSON.parse(JSON.stringify(DEFAULT_MISC.flowMapConfig.lineConfig)) - }, - basicStyleForm: { - ...JSON.parse(JSON.stringify(DEFAULT_BASIC_STYLE)) - } + lineForm: {}, + basicStyleForm: {} }) const toolTip = computed(() => { return props.themes === 'dark' ? 'ndark' : 'dark' diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapPointSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapPointSelector.vue index 4ff853c0ee..aee6efc12e 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapPointSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapPointSelector.vue @@ -1,9 +1,10 @@