diff --git a/frontend/app/components/InternshipEditor.vue b/frontend/app/components/InternshipEditor.vue index 1069565..8306e2f 100644 --- a/frontend/app/components/InternshipEditor.vue +++ b/frontend/app/components/InternshipEditor.vue @@ -30,6 +30,16 @@ const year_of_study_choices = [ subtitle: 'magisterské', } ]; +const semester_choices = [ + { + title: "Zimný", + value: "WINTER" + }, + { + title: "Letný", + value: "SUMMER" + } +]; const props = defineProps({ start: { @@ -118,7 +128,7 @@ const { data, error } = await useSanctumFetch('/api/companies/sim :item-props="(item) => { return { title: item.title, subtitle: item.subtitle } }" :item-value="yearOfStudyValueHandler" :rules="[rules.required]"> -