Merge branch 'master' into clostridium

* master:
  Compare - link to chars
This commit is contained in:
Matthew Dillon 2015-11-17 13:47:39 -07:00
commit ab964bbca1
2 changed files with 11 additions and 4 deletions

View file

@ -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}}

View file

@ -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');