Fix bug in strongs rendering

This commit is contained in:
Jason Wall 2024-03-08 08:46:37 -05:00
parent 7b1fc2462e
commit d406a1554b

View File

@ -40,10 +40,10 @@
<ng-container *ngFor="let w of vs.w"> <ng-container *ngFor="let w of vs.w">
<a <a
[title]="getDict(this.cardItem) + w.s" [title]="getDict(this.cardItem) + w.s"
*ngIf="w.s !== null" *ngIf="w.s !== null && w.s !== undefined"
(click)="openStrongs(w.s, display.showStrongsAsModal)" (click)="openStrongs(w.s, display.showStrongsAsModal)"
>{{ w.t }}</a >{{ w.t }}</a
><ng-container *ngIf="w.s === null">{{ ><ng-container *ngIf="w.s === null || w.s === undefined">{{
w.t w.t
}}</ng-container> </ng-container }}</ng-container> </ng-container
><br *ngIf="display.showVersesOnNewLine" /> ><br *ngIf="display.showVersesOnNewLine" />