Hid the check marks for words which have no direct English gloss in the ULB text
This commit is contained in:
parent
24fca6f8b9
commit
d52b36eb0a
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue