mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Sort custom field options in dropdown
This commit is contained in:
parent
6530566485
commit
30df887934
@ -28,6 +28,7 @@ import Html exposing (..)
|
|||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
import Http
|
import Http
|
||||||
|
import Util.CustomField
|
||||||
import Util.Maybe
|
import Util.Maybe
|
||||||
|
|
||||||
|
|
||||||
@ -63,9 +64,8 @@ visibleFields model =
|
|||||||
|
|
||||||
currentOptions : List CustomField -> Dict String VisibleField -> List CustomField
|
currentOptions : List CustomField -> Dict String VisibleField -> List CustomField
|
||||||
currentOptions all visible =
|
currentOptions all visible =
|
||||||
List.filter
|
List.sortBy Util.CustomField.nameOrLabel all
|
||||||
(\e -> not <| Dict.member e.name visible)
|
|> List.filter (\e -> not <| Dict.member e.name visible)
|
||||||
all
|
|
||||||
|
|
||||||
|
|
||||||
type Msg
|
type Msg
|
||||||
|
@ -7,7 +7,7 @@ import Html exposing (..)
|
|||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
|
|
||||||
|
|
||||||
nameOrLabel : ItemFieldValue -> String
|
nameOrLabel : { r | name : String, label : Maybe String } -> String
|
||||||
nameOrLabel fv =
|
nameOrLabel fv =
|
||||||
Maybe.withDefault fv.name fv.label
|
Maybe.withDefault fv.name fv.label
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user