Force sort order for compare

This commit is contained in:
Matthew Dillon 2015-11-17 13:10:10 -07:00
parent 4e5a91f776
commit c350dd6fcc
2 changed files with 9 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import Ember from 'ember';
const { Component } = Ember;
const { Component, computed: { sort } } = Ember;
export default Component.extend({
characteristics: null,
@ -10,6 +10,12 @@ export default Component.extend({
"update-strains": null,
"update-characteristics": null,
charSortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
sortedCharacteristics: sort('characteristics', 'charSortParams'),
strainSortParams: ['sortOrder'],
sortedStrains: sort('strains', 'sortParams'),
selectedStrains: [],
selectedCharacteristics: [],

View file

@ -6,7 +6,7 @@
<label>Strains</label>
{{
x-select
options=strains
options=sortedStrains
nameAttr='fullNameMU'
multiple=true
selected=selectedStrains
@ -26,7 +26,7 @@
<label>Characteristics</label>
{{
x-select
options=characteristics
options=sortedCharacteristics
nameAttr='characteristicName'
multiple=true
selected=selectedCharacteristics