Clean up no measurements on record
This commit is contained in:
parent
50cc073d2f
commit
658304f728
3 changed files with 12 additions and 15 deletions
|
@ -20,14 +20,10 @@ export default Component.extend({
|
|||
sortAsc: true,
|
||||
paramsChanged: false,
|
||||
sortedMeasurements: sort('measurements', 'sortParams'),
|
||||
measurementsPresent: computed('measurements', function() {
|
||||
return this.get('measurements.length') > 0;
|
||||
}),
|
||||
|
||||
actions: {
|
||||
addCharacteristic: function() {
|
||||
const measurement = this.attrs['add-characteristic']();
|
||||
this.get('measurements').addObject(measurement);
|
||||
return this.attrs['add-characteristic']();
|
||||
},
|
||||
|
||||
changeSortParam: function(col) {
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
<br><br>
|
||||
{{/if}}
|
||||
|
||||
{{#if measurementsPresent}}
|
||||
{{#if paramsChanged}}
|
||||
<button class="button-gray smaller" {{action 'resetSortParam'}}>
|
||||
Reset sort
|
||||
|
@ -48,9 +47,10 @@
|
|||
allCharacteristics=allCharacteristics
|
||||
canEdit=canEdit
|
||||
}}
|
||||
{{else}}
|
||||
<tr>
|
||||
<td colspan="5">No Measurements on Record</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
{{else}}
|
||||
No measurements on record.
|
||||
{{/if}}
|
||||
|
|
|
@ -104,7 +104,8 @@ export default Component.extend(SetupMetaData, {
|
|||
},
|
||||
|
||||
addCharacteristic: function() {
|
||||
return this.attrs['add-characteristic']();
|
||||
const measurement = this.attrs['add-characteristic']();
|
||||
this.get('measurements').pushObject(measurement);
|
||||
},
|
||||
|
||||
saveMeasurement: function(measurement, properties) {
|
||||
|
|
Reference in a new issue