Skip to content
Snippets Groups Projects
Commit fffdebeb authored by Tom Robinson's avatar Tom Robinson Committed by Allen Gilliland
Browse files

Fix pulse table rendering due to dividing BigDecimals

Resolves #1714
parent b969b5e1
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,7 @@
:max-height :10px
:height :10px
:border-radius :2px
:width (str (float (* 100 (/ (bar-column row) max-value))) "%")})}
:width (str (float (* 100 (/ (double (bar-column row)) max-value))) "%")})} ; cast to double to avoid "Non-terminating decimal expansion" errors
" "]])])
rows)]]))
......
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