parent
20a6707144
commit
81b6b9aee4
7 changed files with 6 additions and 11 deletions
|
@ -22,12 +22,6 @@ export default Model.extend({
|
|||
sortOrder : attr('number'),
|
||||
canEdit : attr('boolean'),
|
||||
|
||||
// TODO: move this to component/helper
|
||||
strainNameMU: function() {
|
||||
let type = this.get('typeStrain') ? '<sup>T</sup>' : '';
|
||||
return Ember.String.htmlSafe(`${this.get('strainName')}${type}`);
|
||||
}.property('strainName', 'typeStrain').readOnly(),
|
||||
|
||||
// TODO: move this to component/helper
|
||||
fullName: Ember.computed('species', 'strainName', function() {
|
||||
return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`;
|
||||
|
|
1
app/pods/components/strain-name/template.hbs
Normal file
1
app/pods/components/strain-name/template.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
{{strain.strainName}}{{{if strain.typeStrain '<sup>T</sup>' ''}}}
|
|
@ -17,7 +17,7 @@
|
|||
<tr>
|
||||
<td>
|
||||
{{#link-to 'protected.strains.show' row.strain.id}}
|
||||
{{{row.strain.strainNameMU}}}
|
||||
{{strain-name strain=row.strain}}
|
||||
{{/link-to}}
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
{{#each species.strains as |strain index|}}
|
||||
{{if index ","}}
|
||||
{{#link-to 'protected.strains.show' strain.id}}
|
||||
{{{strain.strainNameMU}}}
|
||||
{{strain-name strain=strain}}
|
||||
{{/link-to}}
|
||||
{{/each}}
|
||||
</td>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
{{#each species.strains as |strain index|}}
|
||||
<li>
|
||||
{{#link-to 'protected.strains.show' strain.id}}
|
||||
{{{strain.strainNameMU}}}
|
||||
{{strain-name strain=strain}}
|
||||
{{/link-to}}
|
||||
</li>
|
||||
{{/each}}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
{{#each strains as |strain index|}}
|
||||
{{if index ","}}
|
||||
{{#link-to 'protected.strains.show' strain.id}}
|
||||
{{{strain.strainNameMU}}}
|
||||
{{strain-name strain=strain}}
|
||||
{{/link-to}}
|
||||
{{/each}}
|
||||
{{add-button label="Add Strain" link="protected.strains.new" canAdd=metaData.canAdd}}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div class="span-1">
|
||||
<fieldset class="flakes-information-box">
|
||||
<legend>
|
||||
{{strain.strainNameMU}}
|
||||
{{strain-name strain=strain}}
|
||||
</legend>
|
||||
|
||||
{{! ROW 1 }}
|
||||
|
|
Reference in a new issue