Browse Source

Fix 'Log in with a device' link focusability

Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
tags/v22.0.0beta1
Jan C. Borchardt 3 years ago
parent
commit
bdd5667ff6
No account linked to committer's email address
3 changed files with 7 additions and 5 deletions
  1. 2
    2
      core/js/dist/login.js
  2. 1
    1
      core/js/dist/login.js.map
  3. 4
    2
      core/src/views/Login.vue

+ 2
- 2
core/js/dist/login.js
File diff suppressed because it is too large
View File


+ 1
- 1
core/js/dist/login.js.map
File diff suppressed because it is too large
View File


+ 4
- 2
core/src/views/Login.vue View File

@@ -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>

Loading…
Cancel
Save