aboutsummaryrefslogtreecommitdiff
path: root/src/components/notification/notification.js
diff options
context:
space:
mode:
authorkPherox <admin@mail.kr-kp.com>2019-12-11 18:48:18 +0900
committerkPherox <admin@mail.kr-kp.com>2019-12-11 18:48:18 +0900
commitc3e7806acbd32483eab497a347f947158ab8febf (patch)
treec9c3e83c3f01d5fcb4968b1c2a8ce66567639243 /src/components/notification/notification.js
parentb4acbf5311b5f8db21bc2e32a9e5246425edcec4 (diff)
remove unused fallback
Diffstat (limited to 'src/components/notification/notification.js')
-rw-r--r--src/components/notification/notification.js16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js
index 93edf2fa..e7bd769e 100644
--- a/src/components/notification/notification.js
+++ b/src/components/notification/notification.js
@@ -43,26 +43,14 @@ const Notification = {
const user = this.notification.from_profile
return highlightStyle(highlight[user.screen_name])
},
- userInStore () {
- return this.$store.getters.findUser(this.notification.from_profile.id)
- },
user () {
- if (this.userInStore) {
- return this.userInStore
- }
- return this.notification.from_profile
+ return this.$store.getters.findUser(this.notification.from_profile.id)
},
userProfileLink () {
return this.generateUserProfileLink(this.user)
},
- targetUserInStore () {
- return this.$store.getters.findUser(this.notification.target.id)
- },
targetUser () {
- if (this.targetUserInStore) {
- return this.targetUserInStore
- }
- return this.notification.target
+ return this.$store.getters.findUser(this.notification.target.id)
},
targetUserProfileLink () {
return this.generateUserProfileLink(this.targetUser)