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)) ) ]