Skip to content
Snippets Groups Projects
Commit a7b95773 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Fix syntax error from ghc

But ghci is perfectly content with this.  :(
parent 98411cf8
No related branches found
No related tags found
1 merge request!31Utilize Obelisk's router for navigation within our app
Pipeline #3859 failed
......@@ -41,9 +41,11 @@ humanReadableSize n
fmt m suffix = (Data.Text.pack . show . (`div` m) $ n) <> " " <> suffix
data LeaveAction
= Close -- | Close the file browser.
| Up -- | Navigate up one level in the directory hierarchy.
deriving (Eq, Ord, Show)
-- | Close the file browser.
= Close
-- | Navigate up one level in the directory hierarchy.
| Up
deriving (Eq, Ord, Show)
-- | For a given file browser path, determine what the "leave this page"
-- action means.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment