BUG: collection measurement date/time field issues (#83)
This commit is contained in:
parent
d2c485af88
commit
234dc3a34c
3 changed files with 11 additions and 3 deletions
|
@ -3,7 +3,7 @@ import DS from 'ember-data';
|
||||||
const { Model, attr, belongsTo } = DS;
|
const { Model, attr, belongsTo } = DS;
|
||||||
|
|
||||||
export default Model.extend({
|
export default Model.extend({
|
||||||
dateMeasured: attr('string'),
|
dateMeasured: attr('ccdb-date'),
|
||||||
timeMeasured: attr('string'),
|
timeMeasured: attr('string'),
|
||||||
waterTempC: attr('number'),
|
waterTempC: attr('number'),
|
||||||
airTempC: attr('number'),
|
airTempC: attr('number'),
|
||||||
|
|
|
@ -11,7 +11,7 @@ export default Model.extend({
|
||||||
collectionStartTime: attr('string-null-to-empty'),
|
collectionStartTime: attr('string-null-to-empty'),
|
||||||
collectionEndDate: attr('ccdb-date'),
|
collectionEndDate: attr('ccdb-date'),
|
||||||
collectionEndTime: attr('string-null-to-empty'),
|
collectionEndTime: attr('string-null-to-empty'),
|
||||||
notes: attr('string'),
|
notes: attr('string', { defaultValue: '' }),
|
||||||
|
|
||||||
project: belongsTo('project'),
|
project: belongsTo('project'),
|
||||||
studyLocation: belongsTo('study-location'),
|
studyLocation: belongsTo('study-location'),
|
||||||
|
|
|
@ -206,7 +206,15 @@
|
||||||
<tr class="form">
|
<tr class="form">
|
||||||
<td class="col-md-3">
|
<td class="col-md-3">
|
||||||
{{#validated-field property='dateMeasured' changeset=cm.changeset}}
|
{{#validated-field property='dateMeasured' changeset=cm.changeset}}
|
||||||
{{input value=cm.changeset.dateMeasured type='date' class='form-control'}}
|
{{
|
||||||
|
pikaday-input
|
||||||
|
onSelection=(action (mut cm.changeset.dateMeasured))
|
||||||
|
value=cm.changeset.dateMeasured
|
||||||
|
useUTC=true
|
||||||
|
placeholder='MM/DD/YYYY'
|
||||||
|
format='MM/DD/YYYY'
|
||||||
|
class='form-control'
|
||||||
|
}}
|
||||||
{{/validated-field}}
|
{{/validated-field}}
|
||||||
</td>
|
</td>
|
||||||
<td class="col-md-3">
|
<td class="col-md-3">
|
||||||
|
|
Loading…
Add table
Reference in a new issue