Merge pull request #829 from getredash/fix/embed

Fix: Plot.ly was given wrong timestamp
This commit is contained in:
Arik Fraimovich 2016-02-14 20:40:43 +02:00
commit 868263315b

View File

@ -102,7 +102,7 @@
var normalizeValue = function(value) {
if (moment.isMoment(value)) {
return value.format("YYYY-MM-DD HH:MM:SS.ssssss");
return value.format("YYYY-MM-DD HH:mm:ss");
}
return value;
}