diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue index 5b4e547679..4ee752de45 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue @@ -473,6 +473,9 @@ const noFullDisplay = computed(() => { const isGauge = computed(() => { return props.chart.type === 'gauge' }) +const isProgressBar = computed(() => { + return props.chart.type === 'progress-bar' +})