From 62426cff9d2ad66b943e6a05d25b31035fa44796 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 12 Jun 2015 12:00:17 -0800 Subject: [PATCH] fix speciesname in fullname --- app/models/strain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/strain.js b/app/models/strain.js index b5313c3..8a46bfd 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -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 `${this.get('species')} ${this.get('strainNameMU')}`; + return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`; }.property('species', 'strainNameMU').readOnly(), });