mirror of
https://github.com/nextcloud/server.git
synced 2026-03-12 05:33:11 -04:00
Fix 'Log in with a device' link focusability
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
This commit is contained in:
parent
225eaab208
commit
fb588f4cbd
3 changed files with 6 additions and 4 deletions
2
core/js/dist/login.js
vendored
2
core/js/dist/login.js
vendored
File diff suppressed because one or more lines are too long
2
core/js/dist/login.js.map
vendored
2
core/js/dist/login.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -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…
Reference in a new issue