aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/durationFromNow.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/handlebars/durationFromNow.js')
-rw-r--r--server/sonar-web/src/main/js/helpers/handlebars/durationFromNow.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/handlebars/durationFromNow.js b/server/sonar-web/src/main/js/helpers/handlebars/durationFromNow.js
index ae052bafccc..fec9cb09b05 100644
--- a/server/sonar-web/src/main/js/helpers/handlebars/durationFromNow.js
+++ b/server/sonar-web/src/main/js/helpers/handlebars/durationFromNow.js
@@ -19,6 +19,6 @@
*/
import moment from 'moment';
-module.exports = function (date, units) {
+module.exports = function(date, units) {
return moment(new Date()).diff(date, units);
};