mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-28 09:59:50 -04:00
Fix bug in strongs rendering
This commit is contained in:
parent
7b1fc2462e
commit
d406a1554b
@ -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" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user