aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/components/AuthTokenSetupDialogue.vue
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-08-12 11:42:51 +0200
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-08-26 19:49:00 +0200
commit2f30d3227f8af0a0c79b139f1cfbd334ca94e0d3 (patch)
tree45cab9e731c0a959a15e42c016324367e0f1a754 /apps/settings/src/components/AuthTokenSetupDialogue.vue
parentf630bd27f7ff881050a4ca516a96d00c8ba8afb6 (diff)
downloadnextcloud-server-2f30d3227f8af0a0c79b139f1cfbd334ca94e0d3.tar.gz
nextcloud-server-2f30d3227f8af0a0c79b139f1cfbd334ca94e0d3.zip
Various fixes
- Fix user status dialog - Add label where missing - Move emoji picker inside input field (similar to talk) - Fix selecting an emoji - Fix multiselect - Fix button with confirmation action - Fix some other unrelated dark theme issues - Fix select2 focus - Run npm lint:fix Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/settings/src/components/AuthTokenSetupDialogue.vue')
-rw-r--r--apps/settings/src/components/AuthTokenSetupDialogue.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/src/components/AuthTokenSetupDialogue.vue b/apps/settings/src/components/AuthTokenSetupDialogue.vue
index 613e286255e..5a706b153b9 100644
--- a/apps/settings/src/components/AuthTokenSetupDialogue.vue
+++ b/apps/settings/src/components/AuthTokenSetupDialogue.vue
@@ -39,8 +39,8 @@
{{ t('settings', 'For security reasons this password will only be shown once.') }}
<div class="app-password-row">
<label for="app-username" class="app-password-label">{{ t('settings', 'Username') }}</label>
- <input :value="loginName"
- id="app-username"
+ <input id="app-username"
+ :value="loginName"
type="text"
class="monospaced"
readonly="readonly"
@@ -48,8 +48,8 @@
</div>
<div class="app-password-row">
<label for="app-password" class="app-password-label">{{ t('settings', 'Password') }}</label>
- <input ref="appPassword"
- id="app-password"
+ <input id="app-password"
+ ref="appPassword"
:value="appPassword"
type="text"
class="monospaced"