mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-24 17:22:34 +01:00
fix (admin): related backend datalist
autocomplete with datalist was causing weird issues
This commit is contained in:
parent
59edf81817
commit
a9350c3126
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ const FormElement = (props) => {
|
|||
<Input list={list_id} onChange={(e) => onTextChange(e.target.value)} {...id}
|
||||
name={struct.label} type="text" value={struct.value || ""}
|
||||
placeholder={ t(struct.placeholder) } readOnly={struct.readonly}
|
||||
autoComplete="new-password" autoCorrect="off" autoCapitalize="off"
|
||||
autoComplete="off" autoCorrect="off" autoCapitalize="off"
|
||||
spellCheck="false" />
|
||||
);
|
||||
if (list_id != null) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue