diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-08 03:58:11 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-08 03:58:11 +0900 |
| commit | a02ee3a08bac55c9f0b29cb6bc0a15726b7cc3c8 (patch) | |
| tree | bf3c3dacd69737bf79eea0311fed1ddc504b15a5 /src/client/app/desktop/views/components/window.vue | |
| parent | Post --> Note (diff) | |
| download | misskey-a02ee3a08bac55c9f0b29cb6bc0a15726b7cc3c8.tar.gz misskey-a02ee3a08bac55c9f0b29cb6bc0a15726b7cc3c8.tar.bz2 misskey-a02ee3a08bac55c9f0b29cb6bc0a15726b7cc3c8.zip | |
Some bug fixes
Diffstat (limited to 'src/client/app/desktop/views/components/window.vue')
| -rw-r--r-- | src/client/app/desktop/views/components/window.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/components/window.vue b/src/client/app/desktop/views/components/window.vue index 48dc46febd..e2cab21799 100644 --- a/src/client/app/desktop/views/components/window.vue +++ b/src/client/app/desktop/views/components/window.vue @@ -92,8 +92,8 @@ export default Vue.extend({ }, withGradient(): boolean { return (this as any).os.isSignedIn - ? (this as any).os.i.account.clientSettings.gradientWindowHeader != null - ? (this as any).os.i.account.clientSettings.gradientWindowHeader + ? (this as any).os.i.clientSettings.gradientWindowHeader != null + ? (this as any).os.i.clientSettings.gradientWindowHeader : false : false; } |