From 1980dbc6ea7df8d25f36c480deaf48d69103c53a Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Thu, 29 May 2025 15:15:13 +0800 Subject: [PATCH] fix default theme icon --- next-ui/src/components/ThemeSelector.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next-ui/src/components/ThemeSelector.vue b/next-ui/src/components/ThemeSelector.vue index d01fd46d..a32c50d9 100644 --- a/next-ui/src/components/ThemeSelector.vue +++ b/next-ui/src/components/ThemeSelector.vue @@ -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() {