Hid the check marks for words which have no direct English gloss in the ULB text

This commit is contained in:
Leonard Smith 2021-05-06 06:40:34 -05:00
parent 24fca6f8b9
commit d52b36eb0a
2 changed files with 11 additions and 1 deletions

View File

@ -7,7 +7,7 @@
{{else}}
<tr {{on "click" (fn this.select @model)}} class="{{this.selected}}" ...attributes>
{{#if this.isNotPhrasePartial}}
<td>{{@model.ulb}}</td>
<td>{{this.ulb}}</td>
{{/if}}
<td>{{@model.greek}}</td>
<td>{{@model.morph}}</td>

View File

@ -30,4 +30,14 @@ export default class WordsWordRowComponent extends Component {
return true;
}
}
get
ulb()
{
if (this.args.model.ulb == '√') {
return '';
} else {
return this.args.model.ulb;
}
}
}