diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-18 23:32:43 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-18 23:32:43 +0900 |
| commit | 73b5c129278bbcc19a95f2c599ac76f68f023c3a (patch) | |
| tree | 62c4198ab091c14214eb3e552352a2ef41ee9055 /packages/client/src/pages/settings/theme.vue | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-73b5c129278bbcc19a95f2c599ac76f68f023c3a.tar.gz misskey-73b5c129278bbcc19a95f2c599ac76f68f023c3a.tar.bz2 misskey-73b5c129278bbcc19a95f2c599ac76f68f023c3a.zip | |
introduce lint for client
Resolve #7998
Diffstat (limited to 'packages/client/src/pages/settings/theme.vue')
| -rw-r--r-- | packages/client/src/pages/settings/theme.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/pages/settings/theme.vue b/packages/client/src/pages/settings/theme.vue index a9cca40f3c..2347f605a8 100644 --- a/packages/client/src/pages/settings/theme.vue +++ b/packages/client/src/pages/settings/theme.vue @@ -148,7 +148,7 @@ export default defineComponent({ const themesCount = installedThemes.value.length; watch(syncDeviceDarkMode, () => { - if (syncDeviceDarkMode) { + if (syncDeviceDarkMode.value) { defaultStore.set('darkMode', isDeviceDarkmode()); } }); |