Fix login form focusing reset password link instead of next input

This commit is contained in:
wvffle 2022-06-21 06:40:54 +00:00 committed by Marcos Peña
parent 3505ff6e78
commit ba986f9efc
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1 @@
Fix login form focusing reset password link instead of next input (#1373)

View File

@ -54,7 +54,10 @@
<div class="field">
<label for="password-field">
<translate translate-context="*/*/*">Password</translate> |
<router-link :to="{name: 'auth.password-reset', query: {email: credentials.username}}">
<router-link
tabindex="1"
:to="{name: 'auth.password-reset', query: {email: credentials.username}}"
>
<translate translate-context="*/Login/*/Verb">Reset your password</translate>
</router-link>
</label>