diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js index fe5b70184..4e6f46a65 100644 --- a/src/components/notification/notification.js +++ b/src/components/notification/notification.js @@ -25,11 +25,11 @@ const Notification = { }, computed: { userClass () { - return highlightClass(this.notification.action.user) + return highlightClass(this.notification.from_profile) }, userStyle () { const highlight = this.$store.state.config.highlight - const user = this.notification.action.user + const user = this.notification.from_profile return highlightStyle(highlight[user.screen_name]) } } diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index 5e9cef97d..e5876cfad 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -1,15 +1,20 @@