diff options
| author | Luc Donnet | 2014-02-11 15:47:58 +0100 |
|---|---|---|
| committer | Luc Donnet | 2014-02-11 15:47:58 +0100 |
| commit | b3bb0d7f8cdbc0189fe0c2faf2a0a01a24eb020a (patch) | |
| tree | de908d57d79b5690172f911ce3c075d334e72d4c | |
| parent | b5bdcf3396ec57ad4f66ce0e6998a2ebfe2fb6a8 (diff) | |
| download | chouette-core-b3bb0d7f8cdbc0189fe0c2faf2a0a01a24eb020a.tar.bz2 | |
Set icon color in compliance check result from graph colors
| -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 |
