aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_card/user_card.vue
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2021-07-19 16:35:28 +0000
committerShpuld Shpludson <shp@cock.li>2021-07-19 16:35:28 +0000
commit891611816c8009fee7bc9953c6c1f3955308659c (patch)
tree91f08aafbcaa71a6d5167fd0b387ce80e03562de /src/components/user_card/user_card.vue
parent373b14e1e4cdab415eb2cc21108cedbf3c21fe6f (diff)
parent85e2f8f78c55c3bda7733205be49c93cb34d96d2 (diff)
Merge branch 'editProfile' into 'develop'
Minor change: Add edit profile button onto self user card See merge request pleroma/pleroma-fe!1398
Diffstat (limited to 'src/components/user_card/user_card.vue')
-rw-r--r--src/components/user_card/user_card.vue18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue
index a16f7873..528b92fb 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;
@@ -578,6 +590,10 @@
}
}
+.sidebar .edit-profile-button {
+ display: none;
+}
+
.user-counts {
display: flex;
line-height:16px;