BUG: Use datepicker in collection form (#81)

Fixes #73
This commit is contained in:
Matthew Ryan Dillon 2018-03-13 07:59:49 -07:00 committed by GitHub
parent 2ead72c552
commit ab30692021
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 6 deletions

View file

@ -7,9 +7,9 @@ const { Model, attr, belongsTo, hasMany } = DS;
export default Model.extend({
displayName: attr('string'),
numberOfTraps: attr('number'),
collectionStartDate: attr('string-null-to-empty'),
collectionStartDate: attr('ccdb-date'),
collectionStartTime: attr('string-null-to-empty'),
collectionEndDate: attr('string-null-to-empty'),
collectionEndDate: attr('ccdb-date'),
collectionEndTime: attr('string-null-to-empty'),
notes: attr('string'),