Compare - link to chars

This commit is contained in:
Matthew Dillon 2015-11-17 13:47:04 -07:00
parent 9d57e1bbfb
commit a669945c35
2 changed files with 11 additions and 4 deletions

View file

@ -14,8 +14,16 @@
<tbody> <tbody>
{{#each characteristics as |row|}} {{#each characteristics as |row|}}
<tr> <tr>
{{#each row key="@index" as |col|}} {{#each row key="@index" as |col index|}}
<td>{{col}}</td> <td>
{{#unless index}}
{{#link-to 'protected.characteristics.show' col.id}}
{{col.characteristicName}}
{{/link-to}}
{{else}}
{{col}}
{{/unless}}
</td>
{{/each}} {{/each}}
</tr> </tr>
{{/each}} {{/each}}

View file

@ -38,8 +38,7 @@ export default Route.extend({
setupController: function(controller, model) { setupController: function(controller, model) {
model.forEach((m, i) => { model.forEach((m, i) => {
const c = this.store.peekRecord('characteristic', m[0]); model[i][0] = this.store.peekRecord('characteristic', m[0]);
model[i][0] = c.get('characteristicName');
}); });
const compare = this.controllerFor('protected.compare'); const compare = this.controllerFor('protected.compare');