From 49cceef3064d73b820241ddf22eb04ddf8cd52b0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 6 May 2023 15:36:27 +0200 Subject: [PATCH] Cleanup indicator config --- src/components/charts/PlotConfigurator.vue | 2 +- src/components/charts/PlotIndicator.vue | 11 +---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/src/components/charts/PlotConfigurator.vue b/src/components/charts/PlotConfigurator.vue index 28109c1f..6c2f4259 100644 --- a/src/components/charts/PlotConfigurator.vue +++ b/src/components/charts/PlotConfigurator.vue @@ -57,7 +57,7 @@ -
-
- @@ -90,6 +80,7 @@ const props = defineProps({ columns: { required: true, type: Array as () => string[] }, addNew: { required: true, type: Boolean }, }); + const emit = defineEmits(['update:modelValue']); const selColor = ref(randomColor()); const graphType = ref(ChartType.line);