fix speciesname in fullname

This commit is contained in:
Matthew Dillon 2015-06-12 12:00:17 -08:00
parent b8ae6802a5
commit 62426cff9d

View file

@ -24,6 +24,6 @@ export default DS.Model.extend({
return `${this.get('species.speciesName')} (strain ${this.get('strainName')})`;
}.property('species', 'strainName').readOnly(),
fullNameMU: function() {
return `<em>${this.get('species')}</em> ${this.get('strainNameMU')}`;
return `<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`;
}.property('species', 'strainNameMU').readOnly(),
});