fix: trim trailling spaces in username
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
:disabled="show2faInput || loggingInByPassword || loggingInByOAuth2 || verifying"
|
||||
:label="tt('Username')"
|
||||
:placeholder="tt('Your username or email')"
|
||||
v-model="username"
|
||||
v-model.trim="username"
|
||||
@input="tempToken = ''"
|
||||
@keyup.enter="passwordInput?.focus()"
|
||||
/>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
:disabled="loggingInByPassword || loggingInByOAuth2"
|
||||
:label="tt('Username')"
|
||||
:placeholder="tt('Your username or email')"
|
||||
v-model:value="username"
|
||||
v-model:value.trim="username"
|
||||
@input="tempToken = ''"
|
||||
></f7-list-input>
|
||||
<f7-list-input
|
||||
|
||||
Reference in New Issue
Block a user