Fix no reactivity on vuex 4 values

This commit is contained in:
Tusooa Zhu 2022-04-06 17:06:41 -04:00
parent 0e56ac1c2b
commit 4ddb6189dc
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
3 changed files with 16 additions and 3 deletions

View file

@ -49,7 +49,7 @@ const SideDrawer = {
currentUser () {
return this.$store.state.users.currentUser
},
shout () { return this.$store.state.shout.channel.state === 'joined' },
shout () { return this.$store.state.shout.joined },
unseenNotifications () {
return unseenNotificationsFromStore(this.$store)
},