Merge branch 'master' into clostridium
* master: Compare - link to chars
This commit is contained in:
commit
ab964bbca1
2 changed files with 11 additions and 4 deletions
|
@ -14,8 +14,16 @@
|
|||
<tbody>
|
||||
{{#each characteristics as |row|}}
|
||||
<tr>
|
||||
{{#each row key="@index" as |col|}}
|
||||
<td>{{col}}</td>
|
||||
{{#each row key="@index" as |col index|}}
|
||||
<td>
|
||||
{{#unless index}}
|
||||
{{#link-to 'protected.characteristics.show' col.id}}
|
||||
{{col.characteristicName}}
|
||||
{{/link-to}}
|
||||
{{else}}
|
||||
{{col}}
|
||||
{{/unless}}
|
||||
</td>
|
||||
{{/each}}
|
||||
</tr>
|
||||
{{/each}}
|
||||
|
|
|
@ -38,8 +38,7 @@ export default Route.extend({
|
|||
|
||||
setupController: function(controller, model) {
|
||||
model.forEach((m, i) => {
|
||||
const c = this.store.peekRecord('characteristic', m[0]);
|
||||
model[i][0] = c.get('characteristicName');
|
||||
model[i][0] = this.store.peekRecord('characteristic', m[0]);
|
||||
});
|
||||
|
||||
const compare = this.controllerFor('protected.compare');
|
||||
|
|
Reference in a new issue