diff options
| author | Henry Jameson <me@hjkos.com> | 2019-04-12 10:49:22 +0300 |
|---|---|---|
| committer | Roman Kostetskii <roman.kostetskiy@relexsolutions.com> | 2019-04-12 10:49:22 +0300 |
| commit | 7d01b3d8baf5bb6b34dfa4e9fe14a32805a821a1 (patch) | |
| tree | 1c576c0ca7566408a7af89f608c75bf88ae9d2f6 /src/components/notification | |
| parent | fd3811d651f5be0c74f33850df2e95ed18f86a0c (diff) | |
Fix wrong usercard notification
Diffstat (limited to 'src/components/notification')
| -rw-r--r-- | src/components/notification/notification.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js index 67d54724..e59e7497 100644 --- a/src/components/notification/notification.js +++ b/src/components/notification/notification.js @@ -23,7 +23,7 @@ const Notification = { return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames) }, getUser (notification) { - return this.$store.state.users.usersObject[notification.action.user.id] + return this.$store.state.users.usersObject[notification.from_profile.id] } }, computed: { |
