Sort custom field options in dropdown

This commit is contained in:
Eike Kettner 2021-01-05 18:04:54 +01:00
parent 6530566485
commit 30df887934
2 changed files with 4 additions and 4 deletions

View File

@ -28,6 +28,7 @@ import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (onClick)
import Http
import Util.CustomField
import Util.Maybe
@ -63,9 +64,8 @@ visibleFields model =
currentOptions : List CustomField -> Dict String VisibleField -> List CustomField
currentOptions all visible =
List.filter
(\e -> not <| Dict.member e.name visible)
all
List.sortBy Util.CustomField.nameOrLabel all
|> List.filter (\e -> not <| Dict.member e.name visible)
type Msg

View File

@ -7,7 +7,7 @@ import Html exposing (..)
import Html.Attributes exposing (..)
nameOrLabel : ItemFieldValue -> String
nameOrLabel : { r | name : String, label : Maybe String } -> String
nameOrLabel fv =
Maybe.withDefault fv.name fv.label