sort order

This commit is contained in:
Matthew Dillon 2015-06-18 10:33:21 -08:00
parent 84cf7817bb
commit 0a73b347f9
12 changed files with 35 additions and 15 deletions

View file

@ -16,6 +16,6 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
controller.set('model', models.characteristics);
controller.set('tableAttrs', tableAttrs);
controller.set('row', 'characteristic-index-row');
controller.set('sort', ['characteristicName']);
controller.set('sort', ['characteristicType.characteristicTypeName', 'sortOrder']);
},
});