Add missing morph component tag to word-row

This commit is contained in:
Leonard Smith 2021-05-06 13:15:39 -05:00
parent 7641245776
commit 8023fb74b0
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<tr {{on "click" (fn this.select @model)}} ...attributes> <tr {{on "click" (fn this.select @model)}} ...attributes>
<td rowspan="{{@rowspan}}">{{@model.ulb}}</td> <td rowspan="{{@rowspan}}">{{@model.ulb}}</td>
<td class="{{this.selected}}">{{@model.greek}}</td> <td class="{{this.selected}}">{{@model.greek}}</td>
<td class="{{this.selected}}">{{@model.morph}}</td> <td class="{{this.selected}}"><Words::Morphology @morph="{{@model.morph}}" /></td>
</tr> </tr>
{{else}} {{else}}
<tr {{on "click" (fn this.select @model)}} class="{{this.selected}}" ...attributes> <tr {{on "click" (fn this.select @model)}} class="{{this.selected}}" ...attributes>
@ -10,6 +10,6 @@
<td>{{this.ulb}}</td> <td>{{this.ulb}}</td>
{{/if}} {{/if}}
<td>{{@model.greek}}</td> <td>{{@model.greek}}</td>
<td>{{@model.morph}}</td> <td><Words::Morphology @morph="{{@model.morph}}" /></td>
</tr> </tr>
{{/if}} {{/if}}