diff options
| author | Shpuld Shpludson <shp@cock.li> | 2019-04-17 15:27:19 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2019-04-17 15:27:19 +0000 |
| commit | e9f4244b26832009bb0648afdb8e9c48177503ae (patch) | |
| tree | fd1a20b71b7b79503ba85d3a4e958f186791e75b /src/components/user_profile/user_profile.vue | |
| parent | 55410c91fab4c2f206c130f453a63a5381213217 (diff) | |
| parent | 2e86a4eb4f7fe55626d2e05c7484b1d7cd0c1070 (diff) | |
Merge branch '494' into 'develop'
Fix UserProfile showing wrong user card in the header
Closes #498 and #494
See merge request pleroma/pleroma-fe!757
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index d449eb85..89900f60 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -1,6 +1,6 @@ <template> <div> - <div v-if="user.id" class="user-profile panel panel-default"> + <div v-if="user" class="user-profile panel panel-default"> <UserCard :user="user" :switcher="true" :selected="timeline.viewing" rounded="top"/> <tab-switcher :renderOnlyFocused="true" ref="tabSwitcher"> <Timeline |
