diff options
Diffstat (limited to 'interface/js/app/stats.js')
-rw-r--r-- | interface/js/app/stats.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/stats.js b/interface/js/app/stats.js index ea8edfd8a..51e41d788 100644 --- a/interface/js/app/stats.js +++ b/interface/js/app/stats.js @@ -34,7 +34,7 @@ define(["jquery", "d3pie", "humanize"], var hours = seconds % 31536000 % 2628000 % 86400 / 3600 >> 0; var minutes = seconds % 31536000 % 2628000 % 86400 % 3600 / 60 >> 0; /* eslint-enable no-bitwise */ - var out; + var out = null; if (years > 0) { if (months > 0) { out = years + "yr " + months + "mth"; |