Commit de37e010 authored by Frank Bergmann's avatar Frank Bergmann

- Resource Management Report:

  Fixed issue if percentage integer is too large
parent 11bcf23e
Pipeline #407 failed with stages
......@@ -24,6 +24,7 @@ ad_proc -public im_resource_mgmt_resource_planning_cell {
} {
if {![string is double $percentage]} { return $percentage }
if {0.0 == $percentage || "" == $percentage} { return "" }
if {$percentage > 1000} { set percentage 1000.0 }
# Color selection
set color ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment