BUG: Better date parsing and handling in transform (#82)

This commit is contained in:
Matthew Ryan Dillon 2018-03-24 15:59:51 +02:00 committed by GitHub
parent ab30692021
commit d2c485af88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,9 +7,10 @@ export default DS.Transform.extend({
serialize(date) { serialize(date) {
if (date !== '') { if (date !== '') {
const day = date.getDate(); date = new Date(date);
const month = date.getMonth() + 1; const day = date.getUTCDate();
const year = date.getFullYear(); const month = date.getUTCMonth() + 1;
const year = date.getUTCFullYear();
return `${year}-${month}-${day}`; return `${year}-${month}-${day}`;
} else { } else {
return null; return null;