Disable autocapitalize on input field
And disable a bunch of others too
This commit is contained in:
parent
0d92f65f7e
commit
bfaefbe178
1 changed files with 4 additions and 0 deletions
|
@ -68,6 +68,10 @@ function Login() {
|
||||||
ref={instanceURLRef}
|
ref={instanceURLRef}
|
||||||
disabled={uiState === 'loading'}
|
disabled={uiState === 'loading'}
|
||||||
list="instances-list"
|
list="instances-list"
|
||||||
|
autocorrect="off"
|
||||||
|
autocapitalize="off"
|
||||||
|
autocomplete="off"
|
||||||
|
spellcheck="false"
|
||||||
/>
|
/>
|
||||||
<datalist id="instances-list">
|
<datalist id="instances-list">
|
||||||
{instancesList.map((instance) => (
|
{instancesList.map((instance) => (
|
||||||
|
|
Loading…
Add table
Reference in a new issue