Skip to content

Commit 7cc4f0b

Browse files
committed
fix small typos
1 parent a81cec0 commit 7cc4f0b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/webapp/app/scanexam/coursdetail/coursdetails.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p-dialog [header]="'scanexam.firsthelpTitle' | translate" [(visible)]="firsthelp" [style]="{ width: '90vw' }">
22
<div style="display: flex; justify-content: space-around">
3-
<span [translate]="'scanexam.firsthelpcoursedetail'"></span>
3+
<span [innerHTML]="'scanexam.firsthelpcoursedetail' | translate"></span>
44
</div>
55
<BR />
66
<BR />

src/main/webapp/app/scanexam/exam-detail/exam-detail.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<p-toast></p-toast>
33
<p-dialog [header]="'scanexam.firsthelpTitle' | translate" [(visible)]="firsthelp" [style]="{ width: '90vw' }">
44
<div style="display: flex; justify-content: space-around">
5-
<span [translate]="'scanexam.firsthelpdetail'"></span>
5+
<span [innerHTML]="'scanexam.firsthelpdetail' | translate"></span>
66
</div>
77
<BR />
88
<BR />
@@ -16,7 +16,7 @@
1616
</p-dialog>
1717

1818
<p-dialog [header]="'scanexam.showInfoExamTitle' | translate" [(visible)]="showInfoExam" [style]="{ width: '50vw' }">
19-
<span [translate]="'scanexam.infoExamDetails'" [translateParams]="infoExamDetail"></span>
19+
<div [innerHTML]="'scanexam.infoExamDetails' | translate: infoExamDetail"></div>
2020
<ng-template pTemplate="footer">
2121
<button type="button" pButton label="ok" (click)="showInfoExam = false"></button>
2222
</ng-template>

src/main/webapp/app/scanexam/import-student/import-student.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
}
251251
</ng-template>
252252
@for (student of students; track student; let ii = $index) {
253-
<ng-template pTemplate="body" let-ii="index" let-student [ngForOf]="students">
253+
<ng-template pTemplate="body">
254254
<tr [ngClass]="{ alreadyimported: true }">
255255
<td>
256256
{{ students.indexOf(student) + 1 }}

0 commit comments

Comments
 (0)