diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-06-25 06:32:08 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-06-25 06:32:08 +0000 |
| commit | 8d33832fe1fc7e26b3d3960bfa1406df29133811 (patch) | |
| tree | 32169021df46d4f8914a4a911cb0ccdf24dc6720 | |
| parent | bb8e2b193342032c2c73b3d7bf1f1ac703afaae1 (diff) | |
| parent | f2d84ef233a47872d959b5cf414f93a1e68638cc (diff) | |
Merge branch 'clearer-user-profile-tabs' into 'develop'
Clearer user profile tabs when status is empty
See merge request pleroma/pleroma-fe!847
| -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 48b774ea..84a159da 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -3,7 +3,7 @@ <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"> - <div :label="$t('user_card.statuses')" :disabled="!user.statuses_count"> + <div :label="$t('user_card.statuses')"> <div class="timeline"> <template v-for="statusId in user.pinnedStatuseIds"> <Conversation |
