diff options
| author | Henry Jameson <me@hjkos.com> | 2018-12-20 07:54:55 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-12-20 07:54:55 +0300 |
| commit | b7962a224c55a20aaa411f01452879aec824cf93 (patch) | |
| tree | 15afc9aa13047907b1255e1e117fcf8fc983c841 /src/components/user_profile/user_profile.vue | |
| parent | b65ac128c15f00b3b0ae885d6cbcb3d1388738af (diff) | |
fixes many problems related to user profile
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 5c823b3d..84fdba45 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" class="user-profile panel panel-default"> + <div v-if="user.id" class="user-profile panel panel-default"> <user-card-content :user="user" :switcher="true" :selected="timeline.viewing"></user-card-content> <tab-switcher> <Timeline :label="$t('user_card.statuses')" :embedded="true" :title="$t('user_profile.timeline_title')" :timeline="timeline" :timeline-name="'user'" :user-id="userId"/> |
