[Status] Fixed a bug with the time on tooltip, changed watch config

This commit is contained in:
Khalah Jones-Golden 2015-06-25 11:50:46 -04:00
parent da2287bdf6
commit 4595f4b267
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ window.define(['angular', 'jquery', 'lodash', 'moment', 'numeral', 'nvd3_directi
var postfix = '';
switch (which) {
case 'time':
return moment(num).format('HH:MM:ss');
return moment(num).format('HH:mm:ss');
case 'byte':
format += 'b';
break;

View file

@ -7,7 +7,7 @@ module.exports = function (grunt) {
'<%= plugins %>/*/*.less',
'<%= app %>/**/components/**/*.less',
'<%= app %>/**/components/vislib/components/styles/**/*.less',
'<%= src %>/server/plugins/status/public/styles/**/*.less'
'<%= src %>/*/server/plugins/status/public/styles/*.less'
],
tasks: ['less:dev']
},