diff options
| author | HJ <spam@hjkos.com> | 2019-02-05 22:46:45 +0000 |
|---|---|---|
| committer | HJ <spam@hjkos.com> | 2019-02-05 22:46:45 +0000 |
| commit | 3d337a239e9fc5f1ca84131fc1bed68b1db53178 (patch) | |
| tree | edc33158ad87b1ea4135ddf38c43eafe4ec686c7 | |
| parent | 2db7774a3ac7b77f6bc1b18d19867389cbb2dc9b (diff) | |
| parent | 52f5ffa86233773953325d9998707558d29810f0 (diff) | |
Merge branch 'fix/avatar-link' into 'develop'
Fix avatar link in search result
See merge request pleroma/pleroma-fe!534
| -rw-r--r-- | src/components/user_card/user_card.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 35b27319..7129430b 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -1,8 +1,8 @@ <template> <div class="card"> - <a href="#"> + <router-link :to="userProfileLink(user)"> <UserAvatar class="avatar" :compact="true" @click.prevent.native="toggleUserExpanded" :src="user.profile_image_url"/> - </a> + </router-link> <div class="usercard" v-if="userExpanded"> <user-card-content :user="user" :switcher="false"></user-card-content> </div> |
