1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Debug pane should use local timezone

This commit is contained in:
Nick O'Leary 2014-07-01 23:14:44 +01:00
parent 045f658ef9
commit c18119f26e

View File

@ -109,7 +109,7 @@
function getTimestamp() { function getTimestamp() {
var d = new Date(); var d = new Date();
return d.toUTCString().substring(5,25)+"."+d.getMilliseconds(); return d.toLocaleString();
} }
var sbc = document.getElementById("debug-content"); var sbc = document.getElementById("debug-content");