feat: add support for the new api
All checks were successful
Build and Deploy Angular App / build (push) Successful in 43s

This commit is contained in:
2025-02-03 03:37:30 +03:00
parent 0f6a1e7a45
commit 004671c006
3 changed files with 30 additions and 11 deletions

View File

@ -18,11 +18,19 @@
@if (selectedFiles.length > 0) {
<div style="margin-top: 15px;">
<p>Выбранные файлы:</p>
<ul>
@for (file of selectedFiles; track $index) {
<li>{{ file.name }}</li>
}
</ul>
@for (item of selectedFiles; track $index) {
<div>
<p>
{{ item.file.name }}
</p>
<mat-form-field color="accent">
<mat-label>
Кампус по умолчанию
</mat-label>
<input matInput type="text" [(ngModel)]="item.campus"/>
</mat-form-field>
</div>
}
</div>
}
</app-configuration-card>