Commit 79fd521b authored by Bryce Johnson's avatar Bryce Johnson

Only abbreviate non-zero values.

parent c07e0377
......@@ -94,7 +94,8 @@
});
},
abbreviateTime(value) {
return value.split(' ')[0];
return value.split(' ')
.filter(unitStr => unitStr.charAt(0) !== '0')[0];
},
toggleHelpState(show) {
this.displayHelp = show;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment