commit: dcfd1783140a3376b0a081c30f5fd8e6ca33167e
parent 1b26c713efa67c86eaccdd884f38d7b6862ce053
Author: Eris <femmediscord@gmail.com>
Date: Mon, 14 Jun 2021 20:02:13 +0000
Fix lint error
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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()
}
}