aboutsummaryrefslogtreecommitdiff
path: root/src/components/notification/notification.js
diff options
context:
space:
mode:
authordave <starpumadev@gmail.com>2019-03-31 21:59:18 -0400
committerdave <starpumadev@gmail.com>2019-03-31 21:59:18 -0400
commit21ea5adc8b4f8eb16026cdefd60a60c8952ae162 (patch)
tree2dd2a244404c107689796daee1a55d7f0caf37d3 /src/components/notification/notification.js
parentb909796683e937b92e0371e9fc49e73300cd296b (diff)
#436 - apply patch and clean up
Diffstat (limited to 'src/components/notification/notification.js')
-rw-r--r--src/components/notification/notification.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js
index fe5b7018..4e6f46a6 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])
}
}