Merge pull request #533 from eikek/mailbox-form-fix

Fix selecting imap connection in scan mailbox settings
This commit is contained in:
mergify[bot] 2021-01-03 09:45:42 +00:00 committed by GitHub
commit f6a040828a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -332,12 +332,24 @@ update flags msg model =
names =
List.map .name list.items
defaultConn =
case names of
h :: [] ->
Just h
_ ->
Nothing
cm =
Comp.Dropdown.makeSingleList
{ makeOption = \a -> { value = a, text = a, additional = "" }
, placeholder = "Select Connection..."
, options = names
, selected = List.head names
, selected =
Util.Maybe.or
[ List.head (Comp.Dropdown.getSelected model.connectionModel)
, defaultConn
]
}
in
( { model