forked from AkkomaGang/akkoma-fe
#436 - sync notification & timeline users
This commit is contained in:
parent
0af2f8e4fd
commit
6482201dc9
2 changed files with 3 additions and 3 deletions
|
@ -33,13 +33,13 @@ const Notification = {
|
|||
return highlightStyle(highlight[user.screen_name])
|
||||
},
|
||||
userInStore () {
|
||||
return this.$store.getters.findUser(this.notification.action.user.id)
|
||||
return this.$store.getters.findUser(this.notification.from_profile.id)
|
||||
},
|
||||
user () {
|
||||
if (this.userInStore) {
|
||||
return this.userInStore
|
||||
}
|
||||
return {}
|
||||
return this.notification.from_profile
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<UserAvatar :compact="true" :betterShadow="betterShadow" :src="notification.from_profile.profile_image_url_original" />
|
||||
</a>
|
||||
<div class='notification-right'>
|
||||
<UserCard :user="notification.from_profile" :rounded="true" :bordered="true" v-if="userExpanded" />
|
||||
<UserCard :user="user" :rounded="true" :bordered="true" v-if="userExpanded" />
|
||||
<span class="notification-details">
|
||||
<div class="name-and-action">
|
||||
<span class="username" v-if="!!notification.from_profile.name_html" :title="'@'+notification.from_profile.screen_name" v-html="notification.from_profile.name_html"></span>
|
||||
|
|
Loading…
Reference in a new issue