Skip to content

Commit

Permalink
Bug fix: invalid fancy table initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidEichmann authored and mpickering committed Dec 17, 2020
1 parent 1d09e28 commit ac9101d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eventlog/Detailed.hs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ renderSpark vs = H.span ! A.class_ "linechart" $ toHtml (T.intercalate "," (map
initTable :: Bool -> T.Text
initTable b = "$(document).ready(function() {\
\$(\".closureTable\").fancyTable({\
\ sortColumn:" <> if b then "8" else "3" <> ",\
\ sortColumn:" <> (if b then "8" else "3") <> ",\
\ pagination: true,\
\ perPage:10,\
\ globalSearch:false,\
Expand Down

0 comments on commit ac9101d

Please sign in to comment.