Skip to content

Commit

Permalink
Remove fade in effect for tables
Browse files Browse the repository at this point in the history
  • Loading branch information
fendor committed Jan 26, 2024
1 parent 95b4b15 commit 14ac5e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eventlog/HtmlTemplate.hs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ template (EventlogType header' x y) as tab_groups = docTypeHtml $ do

renderTab :: Header -> Tab -> Html
renderTab header' tab =
H.div ! A.id (toValue (tabIDToTabID (tabId tab))) ! class_ ("tab-pane fade tabviz " <> status) $ H.div ! class_ "row" $ do
H.div ! A.id (toValue (tabIDToTabID (tabId tab))) ! class_ ("tab-pane tabviz " <> status) $ H.div ! class_ "row" $ do
forM_ (tabContent tab) $ \stuff -> H.div ! class_ "col" $ do
stuff
perTabFooter header'
Expand Down

0 comments on commit 14ac5e1

Please sign in to comment.