aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEris <femmediscord@gmail.com>2021-06-14 20:02:13 +0000
committerEris <femmediscord@gmail.com>2021-06-14 20:02:13 +0000
commit1668315bf8c454a995a968dc034d9e51715987c5 (patch)
tree5310d561ce3a7c43bd9553a02cd376f538d92cc6 /src
parent1fcccd7570d2ece6c6e60af28662db7a697a0730 (diff)
Fix lint error
Diffstat (limited to 'src')
-rw-r--r--src/components/settings_modal/tabs/general_tab.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/settings_modal/tabs/general_tab.js b/src/components/settings_modal/tabs/general_tab.js
index 0e838e59..be0fc768 100644
--- a/src/components/settings_modal/tabs/general_tab.js
+++ b/src/components/settings_modal/tabs/general_tab.js
@@ -50,7 +50,7 @@ const GeneralTab = {
return this.$store.state.instance.background &&
!this.$store.state.users.currentUser.background_image
},
- shout () { return this.$store.state.shout.channel.state === 'joined' },
+ shout () { return this.$store.state.shout.channel.state === 'joined' },
...SharedComputedObject()
}
}