logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: cdcefc2b739fd0dc223f414f6ae2d9e5d73e0f38
parent 46869933346ba6ee0dac06a7e41ecbb5e361716e
Author: Shpuld Shpludson <shp@cock.li>
Date:   Mon, 30 Aug 2021 15:24:06 +0000

Merge branch 'fix-ext-profile' into 'develop'

fix ext profile bug

See merge request pleroma/pleroma-fe!1409

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 @@ -65,7 +65,7 @@ :title="$t('user_card.edit_profile')" /> </button> - <button + <a v-if="isOtherUser && !user.is_local" :href="user.statusnet_profile_url" target="_blank" @@ -75,7 +75,7 @@ class="icon" icon="external-link-alt" /> - </button> + </a> <AccountActions v-if="isOtherUser && loggedIn" :user="user"