Skip to content
Snippets Groups Projects
Commit 29e2e957 authored by stuebinm's avatar stuebinm
Browse files

server: fix an annoying space

parent df7028c7
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ badge level = span_ [class_ badgetype] ...@@ -118,7 +118,7 @@ badge level = span_ [class_ badgetype]
-- | Lint Levels directly render into badges -- | Lint Levels directly render into badges
instance ToHtml Level where instance ToHtml Level where
toHtml level = badge level (toHtml (show level :: Text)) toHtml level = do badge level (show level); " "
-- | Hints are just text with a level -- | Hints are just text with a level
instance ToHtml Hint where instance ToHtml Hint where
...@@ -149,7 +149,6 @@ instance ToHtml (DirResult a) where ...@@ -149,7 +149,6 @@ instance ToHtml (DirResult a) where
unless (null dirresultDeps) $ ul_ $ unless (null dirresultDeps) $ ul_ $
forM_ dirresultDeps $ \missing -> do forM_ dirresultDeps $ \missing -> do
li_ $ do li_ $ do
" "
-- TODO: the whole Maybe Bool thing is annoying; I think that was a -- TODO: the whole Maybe Bool thing is annoying; I think that was a
-- remnant of talking to python stuff and can probably be removed? -- remnant of talking to python stuff and can probably be removed?
if depFatal missing == Just True if depFatal missing == Just True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment