fix: implement on frontend

This commit is contained in:
EETagent 2023-01-15 23:36:14 +01:00
parent ed53640263
commit d35328cad6
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@
{candidate.surname}
</td>
<td class="text-gray-900">
{candidate.study}
{candidate.fieldOfStudy}
</td>
<td class="text-sm">
<Delete id={candidate.applicationId} on:delete value="Odstranit" />

View file

@ -28,7 +28,7 @@ export interface CandidatePreview {
applicationId?: number;
name?: string;
surname?: string;
study?: string;
fieldOfStudy?: string;
}
export interface CandidateLogin {