diff --git a/app/models/species.js b/app/models/species.js index 7581d10..6e4ac05 100644 --- a/app/models/species.js +++ b/app/models/species.js @@ -17,9 +17,4 @@ export default Model.extend({ updatedBy : attr('number'), sortOrder : attr('number'), canEdit : attr('boolean'), - - // TODO: move this to component/helper - speciesNameMU: function() { - return Ember.String.htmlSafe(`${this.get('speciesName')}`); - }.property('speciesName').readOnly(), }); diff --git a/app/models/strain.js b/app/models/strain.js index 277e260..ef5e41c 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -31,6 +31,6 @@ export default Model.extend({ // TODO: move this to component/helper // Can't move until Select2 refactor fullNameMU: function() { - return Ember.String.htmlSafe(`${this.get('species.speciesName')} ${this.get('strainNameMU')}`); + return Ember.String.htmlSafe(`${this.get('species.speciesName')} ${this.get('strainName')}`); }.property('species', 'strainNameMU').readOnly(), }); diff --git a/app/pods/protected/strains/show/strain-card/template.hbs b/app/pods/protected/strains/show/strain-card/template.hbs index 546d7c5..517256d 100644 --- a/app/pods/protected/strains/show/strain-card/template.hbs +++ b/app/pods/protected/strains/show/strain-card/template.hbs @@ -10,7 +10,7 @@
Species
{{#link-to 'protected.species.show' strain.species.id}} - {{strain.species.speciesNameMU}} + {{strain.species.speciesName}} {{/link-to}}