wire up user state with global store

This commit is contained in:
taehoon 2019-09-10 16:21:52 -04:00
parent 8618857aa3
commit f8139e369c

View file

@ -53,10 +53,10 @@ const Notification = {
return this.notification.from_profile
},
userProfileLink () {
return this.generateUserProfileLink(this.notification.from_profile)
return this.generateUserProfileLink(this.user)
},
needMute () {
return this.notification.from_profile.muted
return this.user.muted
}
}
}