SQUASH with drop chartype
This commit is contained in:
parent
de18cfc949
commit
9b0528e38f
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Controller.extend({
|
export default Ember.Controller.extend({
|
||||||
sortParams: ['characteristicType.characteristicTypeName', 'sortOrder'],
|
sortParams: ['characteristicTypeName', 'sortOrder'],
|
||||||
sortedCharacteristics: Ember.computed.sort('model', 'sortParams'),
|
sortedCharacteristics: Ember.computed.sort('model', 'sortParams'),
|
||||||
});
|
});
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
{{#each sortedCharacteristics as |row|}}
|
{{#each sortedCharacteristics as |row|}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{row.characteristicName}}</td>
|
<td>{{row.characteristicName}}</td>
|
||||||
<td>{{row.characteristicType.characteristicTypeName}}</td>
|
<td>{{row.characteristicTypeName}}</td>
|
||||||
<td>{{row.sortOrder}}</td>
|
<td>{{row.sortOrder}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
Reference in a new issue