A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Case insensitive sorting for sources

+10 -1
+10 -1
src/Applications/UI/Sources/View.elm
··· 136 136 ------- 137 137 , model.sources 138 138 |> List.sortBy 139 - (.data >> Dict.fetch "name" "") 139 + lowercaseName 140 140 |> List.map 141 141 (\source -> 142 142 { label = Html.text (Dict.fetch "name" "" source.data) ··· 281 281 , title = "Menu" 282 282 } 283 283 ] 284 + 285 + 286 + 287 + -- 🛠 288 + 289 + 290 + lowercaseName : Source -> String 291 + lowercaseName = 292 + .data >> Dict.fetch "name" "" >> String.toLower