Skip to content

Commit

Permalink
fix: dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Guillemin committed Feb 5, 2024
1 parent b65d461 commit e78529c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/main/webapp/src/components/dialogs/SettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,13 @@ watch(
{ immediate: true },
);
watch(isDark, (newValue): void => {
setDarkTheme(newValue);
});
watch(
isDark,
(newValue): void => {
setDarkTheme(newValue);
},
{ immediate: true },
);
const onClose = (): void => {
isSettings.value = false;
Expand Down

0 comments on commit e78529c

Please sign in to comment.