Skip to content

Commit 9f0065f

Browse files
committed
fix: echart color
1 parent 8b39804 commit 9f0065f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Echart/src/Echart.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const props = defineProps({
2727
const isDark = computed(() => appStore.getIsDark)
2828
2929
const theme = computed(() => {
30-
const echartTheme: boolean | string = unref(isDark) ? true : 'inherit'
30+
const echartTheme: boolean | string = unref(isDark) ? true : 'auto'
3131
3232
return echartTheme
3333
})

0 commit comments

Comments
 (0)