diff options
| author | Eris <femmediscord@gmail.com> | 2021-06-17 19:29:58 +0000 |
|---|---|---|
| committer | Eris <femmediscord@gmail.com> | 2021-06-17 19:29:58 +0000 |
| commit | e1361a1caef3aa9d1faaeb420b03c5400a44c943 (patch) | |
| tree | a73288c81eb86219259a815f01602031b87df809 /src/components/user_card/user_card.vue | |
| parent | 2725a0c6398a876590b458ff1a8d6c2cc9af1d11 (diff) | |
Add edit profile button
Diffstat (limited to 'src/components/user_card/user_card.vue')
| -rw-r--r-- | src/components/user_card/user_card.vue | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index a16f7873..972b72d2 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -54,6 +54,18 @@ {{ user.name }} </div> <button + v-if="!isOtherUser && user.is_local" + class="button-unstyled edit-profile-button" + @click.stop="openProfileTab" + > + <FAIcon + fixed-width + class="icon" + icon="edit" + :title="$t('user_card.edit_profile')" + /> + </button> + <button v-if="isOtherUser && !user.is_local" :href="user.statusnet_profile_url" target="_blank" @@ -426,7 +438,7 @@ } } - .external-link-button { + .external-link-button, .edit-profile-button { cursor: pointer; width: 2.5em; text-align: center; |
