Skip to content
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.

Commit

Permalink
Change Basics.fst to Tuple.first
Browse files Browse the repository at this point in the history
  • Loading branch information
lyuha committed Nov 4, 2016
1 parent d987a13 commit c429f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Index.elm
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ leftColumnView model =
(
div [ style <| boxHeaderStyles ++ blockStyles ] [ text "File Navigation" ]
:: List.map folderDisplay (List.sort (List.filter (not << String.startsWith ".") model.dirs))
++ List.map fileDisplay (List.sortBy fst (List.filter (not << String.startsWith "." << fst) model.files))
++ List.map fileDisplay (List.sortBy Tuple.first (List.filter (not << String.startsWith "." << Tuple.first) model.files))
)

viewReadme markdown =
Expand Down

0 comments on commit c429f13

Please sign in to comment.