logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 3d337a239e9fc5f1ca84131fc1bed68b1db53178
parent: 2db7774a3ac7b77f6bc1b18d19867389cbb2dc9b
Author: HJ <spam@hjkos.com>
Date:   Tue,  5 Feb 2019 22:46:45 +0000

Merge branch 'fix/avatar-link' into 'develop'

Fix avatar link in search result

See merge request pleroma/pleroma-fe!534

Diffstat:

Msrc/components/user_card/user_card.vue4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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>