At the moment the default for date fields is new Date(), that leads to problems. Use this instead: ```js if (type == 'date') { var timestamp = Date.parse(val) if (timestamp) return new Date(timestamp) } ```