Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorJan C. Borchardt <hey@jancborchardt.net>2021-04-12 16:01:01 +0300
committerJan C. Borchardt <hey@jancborchardt.net>2021-04-12 16:01:01 +0300
commitbdd5667ff6ec66f8485e7d39087b0bee121d3482 (patch)
treefd241ee280791d375dcbdb6464ba9d4908f8bc58 /core/src
parent294ddf741ef1cea94a9b1ee731d3cf68c660cae5 (diff)
Fix 'Log in with a device' link focusability
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/src')
-rw-r--r--core/src/views/Login.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/src/views/Login.vue b/core/src/views/Login.vue
index 304bc883557..6218aa7fe8b 100644
--- a/core/src/views/Login.vue
+++ b/core/src/views/Login.vue
@@ -46,7 +46,9 @@
{{ t('core', 'Forgot password?') }}
</a>
<br>
- <a v-if="hasPasswordless" @click.prevent="passwordlessLogin = true">
+ <a v-if="hasPasswordless"
+ href="#"
+ @click.prevent="passwordlessLogin = true">
{{ t('core', 'Log in with a device') }}
</a>
</div>
@@ -61,7 +63,7 @@
:is-https="isHttps"
:has-public-key-credential="hasPublicKeyCredential"
@submit="loading = true" />
- <a @click.prevent="passwordlessLogin = false">
+ <a @click.prevent="passwordlessLogin = false" href="#">
{{ t('core', 'Back') }}
</a>
</div>