mirror of
https://github.com/tloncorp/landscape.git
synced 2024-12-25 09:43:28 +03:00
Disable spellcheck on Access Key fields
This commit is contained in:
parent
a6daeed85f
commit
d04803fed7
@ -109,6 +109,7 @@ export const StoragePrefs = () => {
|
||||
id="key"
|
||||
type="text"
|
||||
autoCorrect="off"
|
||||
spellCheck="false"
|
||||
defaultValue={s3.credentials?.accessKeyId}
|
||||
{...register('accessId', { required: true })}
|
||||
className="input default-ring bg-gray-50"
|
||||
@ -124,6 +125,7 @@ export const StoragePrefs = () => {
|
||||
id="secretAccessKey"
|
||||
type="text"
|
||||
autoCorrect="off"
|
||||
spellCheck="false"
|
||||
defaultValue={s3.credentials?.secretAccessKey}
|
||||
{...register('accessSecret', { required: true })}
|
||||
className="input default-ring bg-gray-50"
|
||||
|
Loading…
Reference in New Issue
Block a user