Skip to content

Commit 8cd3d9a

Browse files
committed
small fix in assignment selection
1 parent 0b0a1c5 commit 8cd3d9a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/components/Cardbox/CardBoxAllocation.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
</div>
2626

2727
<div class="mt-4">
28-
<p class="text-sm text-gray-500 dark:text-gray-300"><b>Potrebno imati:</b> {{ props.data.potrebno_imati }}</p>
28+
<p class="text-sm text-gray-500 dark:text-gray-300"><b>Preferirane tehnologije:</b> {{ props.data.preferirane_tehnologije }}</p>
29+
30+
<p class="text-sm text-gray-500 dark:text-gray-300"><b>Potrebno imati:</b> {{ props.data.potrebno_imati ? props.data.potrebno_imati : "nije navedeno" }}</p>
2931
<p class="text-sm text-gray-500 dark:text-gray-300">
3032
<b>Preferencije za studenta:</b>
3133
{{ props.data.preferencije_za_studenta }}

src/components/Tables/TableAvailableAssignments.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@
4747
<td data-label="Kontakt email">
4848
{{ assignment["poslodavac_email"] }}
4949
</td>
50-
<td data-label="Preferirane tehnologije">
50+
<td data-label="Preferirane tehnologije" class="max-w-[100px] truncate">
5151
{{ assignment["preferirane_tehnologije"] }}
5252
</td>
53+
5354
<td data-label="Trajanje (sati)">
5455
{{ assignment["trajanje_sati"] }}
5556
</td>

0 commit comments

Comments
 (0)