diff options
| -rw-r--r-- | app/helpers/compliance_check_results_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/compliance_check_results_helper.rb b/app/helpers/compliance_check_results_helper.rb index 092315ffd..a24cbaa23 100644 --- a/app/helpers/compliance_check_results_helper.rb +++ b/app/helpers/compliance_check_results_helper.rb @@ -6,7 +6,7 @@ module ComplianceCheckResultsHelper elsif compliance_check_result_status == "ok" ("<i class='fa fa-check status_" + compliance_check_result_status + "_" + compliance_check_result_severity + "'></i>").html_safe else - ("<i class='fa fa-minus-circle status_" + compliance_check_result_status + "_" + compliance_check_result_severity + "'></i>").html_safe + ("<i class='fa fa-times status_" + compliance_check_result_status + "_" + compliance_check_result_severity + "'></i>").html_safe end end |
