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) {
if (date !== '') {
const day = date.getDate();
const month = date.getMonth() + 1;
const year = date.getFullYear();
date = new Date(date);
const day = date.getUTCDate();
const month = date.getUTCMonth() + 1;
const year = date.getUTCFullYear();
return `${year}-${month}-${day}`;
} else {
return null;