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

Commit c519d4e

Browse files
authored
Merge pull request #212 from lyuha/master
Change `Basics.fst` to `Tuple.first`
2 parents d987a13 + c429f13 commit c519d4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/Index.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ leftColumnView model =
169169
(
170170
div [ style <| boxHeaderStyles ++ blockStyles ] [ text "File Navigation" ]
171171
:: List.map folderDisplay (List.sort (List.filter (not << String.startsWith ".") model.dirs))
172-
++ List.map fileDisplay (List.sortBy fst (List.filter (not << String.startsWith "." << fst) model.files))
172+
++ List.map fileDisplay (List.sortBy Tuple.first (List.filter (not << String.startsWith "." << Tuple.first) model.files))
173173
)
174174

175175
viewReadme markdown =

0 commit comments

Comments
 (0)