aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/testStatusIcon.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/handlebars/testStatusIcon.js')
-rw-r--r--server/sonar-web/src/main/js/helpers/handlebars/testStatusIcon.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/helpers/handlebars/testStatusIcon.js b/server/sonar-web/src/main/js/helpers/handlebars/testStatusIcon.js
index 6fb6b6ab9ea..58e82193a42 100644
--- a/server/sonar-web/src/main/js/helpers/handlebars/testStatusIcon.js
+++ b/server/sonar-web/src/main/js/helpers/handlebars/testStatusIcon.js
@@ -19,8 +19,8 @@
*/
import Handlebars from 'handlebars/runtime';
-module.exports = function (status) {
+module.exports = function(status) {
return new Handlebars.default.SafeString(
- `<i class="icon-test-status-${status.toLowerCase()}"></i>`
+ `<i class="icon-test-status-${status.toLowerCase()}"></i>`
);
};