mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
fix: prevent auto-capitalization and adding space after dot when signing in (#674)
This commit is contained in:
parent
f0db2e9013
commit
6c38477bc2
1 changed files with 2 additions and 1 deletions
|
@ -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 a new issue