diff --git a/frontend/src/pages/JobForm.vue b/frontend/src/pages/JobForm.vue index 6bd59e33..d2562a57 100644 --- a/frontend/src/pages/JobForm.vue +++ b/frontend/src/pages/JobForm.vue @@ -27,6 +27,13 @@ :options="jobTypes" :required="true" /> +
{ ] }) +const workModes = computed(() => { + return [ + { label: 'On site', value: 'On-site' }, + { label: 'Hybrid', value: 'Hybrid' }, + { label: 'Remote', value: 'Remote' }, + ] +}) + const jobStatuses = computed(() => { return [ { label: 'Open', value: 'Open' },