fix speciesname in fullname
This commit is contained in:
parent
b8ae6802a5
commit
62426cff9d
1 changed files with 1 additions and 1 deletions
|
@ -24,6 +24,6 @@ export default DS.Model.extend({
|
||||||
return `${this.get('species.speciesName')} (strain ${this.get('strainName')})`;
|
return `${this.get('species.speciesName')} (strain ${this.get('strainName')})`;
|
||||||
}.property('species', 'strainName').readOnly(),
|
}.property('species', 'strainName').readOnly(),
|
||||||
fullNameMU: function() {
|
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(),
|
}.property('species', 'strainNameMU').readOnly(),
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue