Skip to content

Commit

Permalink
fix #2301
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jan 12, 2017
1 parent 257dd27 commit 3b41237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/logger-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ var renderLogEntry = function(entry) {
var time = logDate;
time.setTime(entry.tstamp - logDateTimezoneOffset);
tr.cells[0].textContent = padTo2(time.getUTCHours()) + ':' +
padTo2(time.getMinutes()) + ':' +
padTo2(time.getUTCMinutes()) + ':' +
padTo2(time.getSeconds());

if ( entry.tab ) {
Expand Down

0 comments on commit 3b41237

Please sign in to comment.