diff options
| author | Henry Jameson <me@hjkos.com> | 2021-08-16 01:41:52 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-08-16 01:41:52 +0300 |
| commit | dbdc5e050fa900fb31ae76ba1047390ae19407c5 (patch) | |
| tree | 3a076b60f344648f8189cfb5ca82b669d745c87c | |
| parent | 46869933346ba6ee0dac06a7e41ecbb5e361716e (diff) | |
fix ext profile bug
| -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 528b92fb..72c151b9 100644 --- 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" |
