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