Fix measurement sort order
This commit is contained in:
parent
6e7e04f225
commit
e10426d867
3 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
||||||
import SortableController from '../sortable';
|
import SortableController from '../sortable';
|
||||||
|
|
||||||
export default SortableController.extend({
|
export default SortableController.extend({
|
||||||
sortBy: 'characteristicName'
|
sortBy: 'characteristic',
|
||||||
});
|
});
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{{#each controller as |measurement|}}
|
{{#each measurement in controller}}
|
||||||
{{measurements/measurement-row measurement=measurement}}
|
{{measurements/measurement-row measurement=measurement}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -6,7 +6,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Characteristic 1',
|
characteristic: 'α-fucosidase (API ZYM)',
|
||||||
textMeasurementType: 'Meas. Type 1',
|
textMeasurementType: 'Meas. Type 1',
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -20,7 +20,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Characteristic 2',
|
characteristic: 'α-glucosidase',
|
||||||
textMeasurementType: 'Meas. Type 1',
|
textMeasurementType: 'Meas. Type 1',
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -34,7 +34,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Characteristic 3',
|
characteristic: 'Chloramphenicol',
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: "text value",
|
txtValue: "text value",
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -48,7 +48,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Characteristic 4',
|
characteristic: 'Bacitracin',
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: 123.4,
|
numValue: 123.4,
|
||||||
|
@ -62,7 +62,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 5,
|
id: 5,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Characteristic 4',
|
characteristic: 'Indole',
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: 567.8,
|
numValue: 567.8,
|
||||||
|
|
Reference in a new issue