diff options
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/handlebars/statusIcon.js')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/handlebars/statusIcon.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/helpers/handlebars/statusIcon.js b/server/sonar-web/src/main/js/helpers/handlebars/statusIcon.js index ef2f35b0672..4d90492d251 100644 --- a/server/sonar-web/src/main/js/helpers/handlebars/statusIcon.js +++ b/server/sonar-web/src/main/js/helpers/handlebars/statusIcon.js @@ -19,8 +19,6 @@ */ import Handlebars from 'handlebars/runtime'; -module.exports = function (status) { - return new Handlebars.default.SafeString( - `<i class="icon-status-${status.toLowerCase()}"></i>` - ); +module.exports = function(status) { + return new Handlebars.default.SafeString(`<i class="icon-status-${status.toLowerCase()}"></i>`); }; |