diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue index 4d914de2eb..08dcd0a708 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue @@ -13,6 +13,10 @@ const props = defineProps({ type: Object, required: true }, + commonBackgroundPop: { + type: Object, + required: true + }, themes: { type: String as PropType, default: 'dark' @@ -20,7 +24,7 @@ const props = defineProps({ }) const predefineColors = COLOR_PANEL -const { chart } = toRefs(props) +const { chart, commonBackgroundPop } = toRefs(props)