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

Commit

Permalink
Merge pull request #212 from lyuha/master
Browse files Browse the repository at this point in the history
Change `Basics.fst` to `Tuple.first`
  • Loading branch information
evancz authored Nov 4, 2016
2 parents d987a13 + c429f13 commit c519d4e
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 c519d4e

Please sign in to comment.