summaryrefslogtreecommitdiffstats
path: root/apps/user_status/src/components/CustomMessageInput.vue
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-08-25 14:25:56 +0200
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-08-26 19:51:10 +0200
commitf1ce2c2b9303426266a81cacb8efb4ebdb6d2458 (patch)
tree51863c552a0ab5576606fcae2fc823bb74440e3d /apps/user_status/src/components/CustomMessageInput.vue
parent1d35a53991f356976d78b8053651737821502687 (diff)
downloadnextcloud-server-f1ce2c2b9303426266a81cacb8efb4ebdb6d2458.tar.gz
nextcloud-server-f1ce2c2b9303426266a81cacb8efb4ebdb6d2458.zip
Fix rebasing issues and improve profile settings page a bit more
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/user_status/src/components/CustomMessageInput.vue')
-rw-r--r--apps/user_status/src/components/CustomMessageInput.vue10
1 files changed, 7 insertions, 3 deletions
diff --git a/apps/user_status/src/components/CustomMessageInput.vue b/apps/user_status/src/components/CustomMessageInput.vue
index 5636896471a..731bd6dd91f 100644
--- a/apps/user_status/src/components/CustomMessageInput.vue
+++ b/apps/user_status/src/components/CustomMessageInput.vue
@@ -25,7 +25,11 @@
{{ visibleIcon }}
</NcButton>
</NcEmojiPicker>
+ <label class="hidden-visually" for="user_status_message">
+ {{ t('user_status', 'What is your status?') }}
+ </label>
<input ref="input"
+ id="user_status_message"
maxlength="80"
:disabled="disabled"
:placeholder="$t('user_status', 'What is your status?')"
@@ -39,8 +43,8 @@
</template>
<script>
-import NcButton from '@nextcloud/vue/dist/Components/NcButton.vue'
-import NcEmojiPicker from '@nextcloud/vue/dist/Components/NcEmojiPicker.vue'
+import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
+import NcEmojiPicker from '@nextcloud/vue/dist/Components/NcEmojiPicker.js'
export default {
name: 'CustomMessageInput',
@@ -104,7 +108,7 @@ export default {
flex-grow: 1;
position: relative;
- .v-popover {
+ .v-popper {
position: absolute;
}