Fix index sorting again
continuous-integration/drone/push Build is passing Details

This commit is contained in:
3wc 2021-04-25 18:43:09 +02:00
parent 8b7615dce1
commit d9a8d580ce
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ viewApps model =
[ div [ class "row" ]
(List.map viewApp (apps |> List.sortWith
(by .status ASC
|> andThen .name ASC))
|> andThen (String.toLower << .name) ASC))
)
]