Disable autocomplete on some input fields

This commit is contained in:
Eike Kettner
2019-10-28 18:05:34 +01:00
parent 30d21b0618
commit fd311b9688
3 changed files with 19 additions and 3 deletions

View File

@ -762,7 +762,10 @@ renderEditForm model =
]
,div [class "field"]
[div [class "ui action input"]
[textarea [rows 7, onInput SetNotes][Maybe.withDefault "" model.notesModel |> text]
[textarea [ rows 6
, autocomplete False
, onInput SetNotes
][Maybe.withDefault "" model.notesModel |> text]
,button [class "ui icon button", onClick SaveNotes]
[i [class "save outline icon"][]
]