-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing space in verses display in dipl transcription
The words at the end of the line that do not coincide with the end of a line were attached to those of the next line. Now a space has been added.
- Loading branch information
1 parent
d514813
commit 9231c62
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
<span class="lb" | ||
[evtHtmlAttributes]="data?.attributes" | ||
[attr.id]="data.id" [attr.data-rend]="data.rend || ''" [attr.data-facs]="data.facs || ''"> | ||
<br *ngIf="displayBlock$ | async"/> | ||
<span class="lineN" *ngIf="data.n && (displayBlock$ | async)">{{data.n}}</span> | ||
<ng-container *ngIf="data"> | ||
<br *ngIf="displayBlock$ | async"/> | ||
<span class="lineN" *ngIf="data.n && (displayBlock$ | async)">{{data.n}}</span> | ||
</ng-container> | ||
<ng-container *ngIf="displayInline$ | async"> </ng-container> | ||
</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters