fix avatars not opening inline card

This commit is contained in:
Henry Jameson 2022-03-22 19:43:11 +02:00
parent 6b5791fda6
commit b817e09ee8
2 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@
> >
<a <a
class="avatar-container" class="avatar-container"
:href="notification.from_profile.statusnet_profile_url" :href="$router.resolve(userProfileLink).href"
@click.stop.prevent.capture="toggleUserExpanded" @click.stop.prevent.capture="toggleUserExpanded"
> >
<UserAvatar <UserAvatar

View file

@ -121,8 +121,8 @@
v-if="!noHeading" v-if="!noHeading"
class="left-side" class="left-side"
> >
<router-link <a
:to="userProfileLink" :href="$router.resolve(userProfileLink).href"
@click.stop.prevent.capture="toggleUserExpanded" @click.stop.prevent.capture="toggleUserExpanded"
> >
<UserAvatar <UserAvatar
@ -132,7 +132,7 @@
:better-shadow="betterShadow" :better-shadow="betterShadow"
:user="status.user" :user="status.user"
/> />
</router-link> </a>
</div> </div>
<div class="right-side"> <div class="right-side">
<UserCard <UserCard