Fix measurement sort order

This commit is contained in:
Matthew Dillon 2015-03-21 11:42:29 -08:00
parent 6e7e04f225
commit e10426d867
3 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
import SortableController from '../sortable';
export default SortableController.extend({
sortBy: 'characteristicName'
sortBy: 'characteristic',
});

View file

@ -9,7 +9,7 @@
</tr>
</thead>
<tbody>
{{#each controller as |measurement|}}
{{#each measurement in controller}}
{{measurements/measurement-row measurement=measurement}}
{{/each}}
</tbody>

View file

@ -6,7 +6,7 @@ module.exports = function(app) {
{
id: 1,
strain: 1,
characteristic: 'Characteristic 1',
characteristic: 'α-fucosidase (API ZYM)',
textMeasurementType: 'Meas. Type 1',
txtValue: null,
numValue: null,
@ -20,7 +20,7 @@ module.exports = function(app) {
{
id: 2,
strain: 1,
characteristic: 'Characteristic 2',
characteristic: 'α-glucosidase',
textMeasurementType: 'Meas. Type 1',
txtValue: null,
numValue: null,
@ -34,7 +34,7 @@ module.exports = function(app) {
{
id: 3,
strain: 1,
characteristic: 'Characteristic 3',
characteristic: 'Chloramphenicol',
textMeasurementType: null,
txtValue: "text value",
numValue: null,
@ -48,7 +48,7 @@ module.exports = function(app) {
{
id: 4,
strain: 1,
characteristic: 'Characteristic 4',
characteristic: 'Bacitracin',
textMeasurementType: null,
txtValue: null,
numValue: 123.4,
@ -62,7 +62,7 @@ module.exports = function(app) {
{
id: 5,
strain: 1,
characteristic: 'Characteristic 4',
characteristic: 'Indole',
textMeasurementType: null,
txtValue: null,
numValue: 567.8,