diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-12 11:18:31 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-09-12 15:38:20 +0200 |
commit | 3fcb05e9006d078c5acb116bfd46e92b7ba36f5e (patch) | |
tree | 8e14bf2892df53dfcbcc46dd148d56d8452272ea /apps/user_status | |
parent | 52d962bd5346f8879290c332a2e35ad6d12c84df (diff) | |
download | nextcloud-server-3fcb05e9006d078c5acb116bfd46e92b7ba36f5e.tar.gz nextcloud-server-3fcb05e9006d078c5acb116bfd46e92b7ba36f5e.zip |
Port Profile section checbox to NcCheckoxRadioSwitch component
Improve accessibility and unify the design
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/user_status')
-rw-r--r-- | apps/user_status/src/components/CustomMessageInput.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_status/src/components/CustomMessageInput.vue b/apps/user_status/src/components/CustomMessageInput.vue index 731bd6dd91f..d5a25bfb69d 100644 --- a/apps/user_status/src/components/CustomMessageInput.vue +++ b/apps/user_status/src/components/CustomMessageInput.vue @@ -28,8 +28,8 @@ <label class="hidden-visually" for="user_status_message"> {{ t('user_status', 'What is your status?') }} </label> - <input ref="input" - id="user_status_message" + <input id="user_status_message" + ref="input" maxlength="80" :disabled="disabled" :placeholder="$t('user_status', 'What is your status?')" |