From b817e09ee8ed4e02a6757b2c4e5577c5f82bec45 Mon Sep 17 00:00:00 2001 From: Henry Jameson <me@hjkos.com> Date: Tue, 22 Mar 2022 19:43:11 +0200 Subject: [PATCH] fix avatars not opening inline card --- src/components/notification/notification.vue | 2 +- src/components/status/status.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index c03ebc89a8..2af4af22f7 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -33,7 +33,7 @@ > <a class="avatar-container" - :href="notification.from_profile.statusnet_profile_url" + :href="$router.resolve(userProfileLink).href" @click.stop.prevent.capture="toggleUserExpanded" > <UserAvatar diff --git a/src/components/status/status.vue b/src/components/status/status.vue index eb30f28b96..3f352f03fb 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -121,8 +121,8 @@ v-if="!noHeading" class="left-side" > - <router-link - :to="userProfileLink" + <a + :href="$router.resolve(userProfileLink).href" @click.stop.prevent.capture="toggleUserExpanded" > <UserAvatar @@ -132,7 +132,7 @@ :better-shadow="betterShadow" :user="status.user" /> - </router-link> + </a> </div> <div class="right-side"> <UserCard -- GitLab