fix: prevent auto-capitalization and adding space after dot when signing in (#674)
parent
f0db2e9013
commit
6c38477bc2
|
@ -125,11 +125,12 @@ onClickOutside($$(input), () => {
|
||||||
<input
|
<input
|
||||||
ref="input"
|
ref="input"
|
||||||
v-model="server"
|
v-model="server"
|
||||||
|
autocapitalize="off"
|
||||||
|
inputmode="url"
|
||||||
outline-none bg-transparent w-full max-w-50
|
outline-none bg-transparent w-full max-w-50
|
||||||
spellcheck="false"
|
spellcheck="false"
|
||||||
autocorrect="off"
|
autocorrect="off"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
autocapitalize="none"
|
|
||||||
@input="handleInput"
|
@input="handleInput"
|
||||||
@keydown.down="move(1)"
|
@keydown.down="move(1)"
|
||||||
@keydown.up="move(-1)"
|
@keydown.up="move(-1)"
|
||||||
|
|
Loading…
Reference in New Issue