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

Commit c429f13

Browse files
committed
Change Basics.fst to Tuple.first
1 parent d987a13 commit c429f13

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)