Skip to content

Commit

Permalink
Removed this
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmyers committed Dec 3, 2024
1 parent f6ccd99 commit c7c4ce3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,19 +201,19 @@ <h2>{{ t("confirm_training_title") }}</h2>
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let element" class="bookName">
<div class="confirm-books cell-padding-block">
{{ this.i18n.enumerateList(element.ranges) }}
{{ i18n.enumerateList(element.ranges) }}
</div>
</td>
</ng-container>
<ng-container matColumnDef="source">
<th mat-header-cell *matHeaderCellDef>
{{ this.i18n.getLanguageDisplayName(trainingSources[0].writingSystem.tag) }}
{{ i18n.getLanguageDisplayName(trainingSources[0].writingSystem.tag) }}
</th>
<td mat-cell *matCellDef="let element">{{ element.source }}</td>
</ng-container>
<ng-container matColumnDef="target">
<th mat-header-cell *matHeaderCellDef>
{{ this.i18n.getLanguageDisplayName(trainingTargets[0].writingSystem.tag) }}
{{ i18n.getLanguageDisplayName(trainingTargets[0].writingSystem.tag) }}
</th>
<td mat-cell *matCellDef="let element">{{ element.target }}</td>
</ng-container>
Expand Down

0 comments on commit c7c4ce3

Please sign in to comment.