mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-24 00:38:49 +01:00
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}
|
||||
disabled={uiState === 'loading'}
|
||||
list="instances-list"
|
||||
autocorrect="off"
|
||||
autocapitalize="off"
|
||||
autocomplete="off"
|
||||
spellcheck="false"
|
||||
/>
|
||||
<datalist id="instances-list">
|
||||
{instancesList.map((instance) => (
|
||||
|
|
Loading…
Reference in a new issue