Skip to content

Commit 3b41237

Browse files
committed
fix #2301
1 parent 257dd27 commit 3b41237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/logger-ui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ var renderLogEntry = function(entry) {
543543
var time = logDate;
544544
time.setTime(entry.tstamp - logDateTimezoneOffset);
545545
tr.cells[0].textContent = padTo2(time.getUTCHours()) + ':' +
546-
padTo2(time.getMinutes()) + ':' +
546+
padTo2(time.getUTCMinutes()) + ':' +
547547
padTo2(time.getSeconds());
548548

549549
if ( entry.tab ) {

0 commit comments

Comments
 (0)