summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components/settings
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-04-08 19:56:42 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-04-08 19:56:42 +0900
commitfab0cc51b3ca557b278b0d2414d436d6552d4f08 (patch)
tree62619d8b92895663e1c9447d38f1281b89033efa /src/client/app/common/views/components/settings
parentユーザーリストでフォローボタンを表示するように (#4603) (diff)
downloadmisskey-fab0cc51b3ca557b278b0d2414d436d6552d4f08.tar.gz
misskey-fab0cc51b3ca557b278b0d2414d436d6552d4f08.tar.bz2
misskey-fab0cc51b3ca557b278b0d2414d436d6552d4f08.zip
Fix
Diffstat (limited to 'src/client/app/common/views/components/settings')
-rw-r--r--src/client/app/common/views/components/settings/profile.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/settings/profile.vue b/src/client/app/common/views/components/settings/profile.vue
index acfc1875a6..fd08f85816 100644
--- a/src/client/app/common/views/components/settings/profile.vue
+++ b/src/client/app/common/views/components/settings/profile.vue
@@ -165,7 +165,7 @@ export default Vue.extend({
bannerStyle(): any {
if (this.$store.state.i.bannerUrl == null) return {};
return {
- backgroundColor: this.$store.state.i.bannerColor ? this.$store.state.i.bannerColor : null,
+ backgroundColor: this.$store.state.i.bannerColor,
backgroundImage: `url(${ this.$store.state.i.bannerUrl })`
};
},