From c561e0ec769deaab7d3e48572fc5a7853f163135 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 16 Nov 2015 11:39:53 -0700 Subject: [PATCH] Changed mind on strain model MU prop Closes #55. --- app/models/strain.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/app/models/strain.js b/app/models/strain.js index ef5e41c..8643017 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -2,7 +2,7 @@ import DS from 'ember-data'; import Ember from 'ember'; const { Model, hasMany, belongsTo, attr } = DS; -const { computed } = Ember; +const { computed, String: { htmlSafe } } = Ember; export default Model.extend({ measurements : hasMany('measurements', { async: false }), @@ -28,9 +28,7 @@ export default Model.extend({ return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`; }), - // TODO: move this to component/helper - // Can't move until Select2 refactor - fullNameMU: function() { - return Ember.String.htmlSafe(`${this.get('species.speciesName')} ${this.get('strainName')}`); - }.property('species', 'strainNameMU').readOnly(), + fullNameMU: computed('species', 'strainName', function() { + return htmlSafe(`${this.get('species.speciesName')} ${this.get('strainName')}`); + }), });