mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Merge pull request #533 from eikek/mailbox-form-fix
Fix selecting imap connection in scan mailbox settings
This commit is contained in:
commit
f6a040828a
@ -332,12 +332,24 @@ update flags msg model =
|
|||||||
names =
|
names =
|
||||||
List.map .name list.items
|
List.map .name list.items
|
||||||
|
|
||||||
|
defaultConn =
|
||||||
|
case names of
|
||||||
|
h :: [] ->
|
||||||
|
Just h
|
||||||
|
|
||||||
|
_ ->
|
||||||
|
Nothing
|
||||||
|
|
||||||
cm =
|
cm =
|
||||||
Comp.Dropdown.makeSingleList
|
Comp.Dropdown.makeSingleList
|
||||||
{ makeOption = \a -> { value = a, text = a, additional = "" }
|
{ makeOption = \a -> { value = a, text = a, additional = "" }
|
||||||
, placeholder = "Select Connection..."
|
, placeholder = "Select Connection..."
|
||||||
, options = names
|
, options = names
|
||||||
, selected = List.head names
|
, selected =
|
||||||
|
Util.Maybe.or
|
||||||
|
[ List.head (Comp.Dropdown.getSelected model.connectionModel)
|
||||||
|
, defaultConn
|
||||||
|
]
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
( { model
|
( { model
|
||||||
|
Loading…
x
Reference in New Issue
Block a user