diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2024-09-17 21:41:45 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2024-09-17 22:20:36 +0200 |
commit | 26abc86eca7cf6ae95f20e1dc180774d11892aab (patch) | |
tree | c646582f842066e92b8cce3ddc593e3bef0a24b7 /core | |
parent | dc71cb7c3a94eeea69f647f248f3bcbfcecdbe2b (diff) | |
download | nextcloud-server-26abc86eca7cf6ae95f20e1dc180774d11892aab.tar.gz nextcloud-server-26abc86eca7cf6ae95f20e1dc180774d11892aab.zip |
feat: add profile pronouns
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/views/Profile.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/views/Profile.vue b/core/src/views/Profile.vue index a513e0caf78..1df8fce6606 100644 --- a/core/src/views/Profile.vue +++ b/core/src/views/Profile.vue @@ -11,6 +11,7 @@ <div class="profile__header__container__placeholder" /> <div class="profile__header__container__displayname"> <h2>{{ displayname || userId }}</h2> + <span v-if="pronouns" class="profile__header__container__pronouns">· {{ pronouns }}</span> <NcButton v-if="isCurrentUser" type="primary" :href="settingsUrl"> @@ -177,6 +178,7 @@ export default defineComponent({ biography: null as string|null, actions: [] as IProfileAction[], isUserAvatarVisible: false, + pronouns: null as string|null, }) return { |