From d9a8d580ce78fa12906d330015cd2b587ddf851a Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Sun, 25 Apr 2021 18:43:09 +0200 Subject: [PATCH] Fix index sorting again --- src/Pages/Top.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pages/Top.elm b/src/Pages/Top.elm index 197a93b..a5864cb 100644 --- a/src/Pages/Top.elm +++ b/src/Pages/Top.elm @@ -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)) ) ]