mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 18:39:33 +00:00
parent
7b7a8ecd69
commit
40b093ae72
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user