fix: Prevents quick type suggestions on iOS for password input
This commit is contained in:
@@ -75,6 +75,8 @@ const DecoratedInput = forwardRef(
|
|||||||
|
|
||||||
<input
|
<input
|
||||||
autoComplete={autocomplete ? 'on' : 'off'}
|
autoComplete={autocomplete ? 'on' : 'off'}
|
||||||
|
autoCorrect={autocomplete ? 'on' : 'off'}
|
||||||
|
autoCapitalize={autocomplete ? 'on' : 'off'}
|
||||||
autoFocus={autofocus}
|
autoFocus={autofocus}
|
||||||
className={`${computedClassNames.input} ${disabled ? computedClassNames.disabled : ''} ${className?.input}`}
|
className={`${computedClassNames.input} ${disabled ? computedClassNames.disabled : ''} ${className?.input}`}
|
||||||
data-lpignore={type !== 'password' ? true : false}
|
data-lpignore={type !== 'password' ? true : false}
|
||||||
|
|||||||
Reference in New Issue
Block a user