fix default theme icon

This commit is contained in:
Gauthier Roebroeck 2025-05-29 15:15:13 +08:00
parent ec3ddc3bf1
commit 1980dbc6ea

View file

@ -26,7 +26,7 @@ const themes= [
]
const themeIcon = computed(
() => themes.find(x => x.value === appStore.theme)?.icon || 'mdi-brightness-auto'
() => themes.find(x => x.value === appStore.theme)?.icon || 'mdi-theme-light-dark'
)
function cycleTheme() {