Fixed the numeric format of failed % in report.
This commit is contained in:
parent
032acc5cb3
commit
c68da1de83
|
@ -5757,7 +5757,7 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f
|
|||
|
||||
$row['checks'] = format_numeric($count_checks, 0);
|
||||
$row['ok'] = $percent_ok . " %";
|
||||
$row['fail'] = $percent_fail . " %";
|
||||
$row['fail'] = format_numeric($percent_fail, 2) . " %";
|
||||
$row['failed'] =
|
||||
format_numeric($percent_fail * $count_checks / 100, 0);
|
||||
|
||||
|
|
Loading…
Reference in New Issue