aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-04-15 07:26:55 +0300
committerHenry Jameson <me@hjkos.com>2018-05-12 15:19:53 +0300
commitbc85e5f0c1b000d5aea2c90b6ca6d3a873e13626 (patch)
treeeaae0ad0a0c9c7e79300b925dab74208974c78dc /src/components/user_profile/user_profile.vue
parenta6fa913f45e79734ff13fe85c7ed71cb7b2e5477 (diff)
Further usercard readibility. Made it visible which "tab" is actiavated - should
be enough to hint user that you can click "following" / "followers". Fixes #77
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
-rw-r--r--src/components/user_profile/user_profile.vue2
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 838a43ab..f8502907 100644
--- a/src/components/user_profile/user_profile.vue
+++ b/src/components/user_profile/user_profile.vue
@@ -1,7 +1,7 @@
<template>
<div>
<div v-if="user" class="user-profile panel panel-default">
- <user-card-content :user="user" :switcher="true"></user-card-content>
+ <user-card-content :user="user" :switcher="true" :selected="timeline.viewing"></user-card-content>
</div>
<Timeline :title="$t('user_profile.timeline_title')" :timeline="timeline" :timeline-name="'user'" :user-id="userId"/>
</div>