From 1a53a9f30b55186ab1818e1c564638d6bc948de1 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Wed, 24 Sep 2025 14:24:08 +0000 Subject: [PATCH] feat: Add work mode selection to job form --- frontend/src/pages/JobForm.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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' },