Skip to content

Commit

Permalink
🔨 Add required property
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Sep 16, 2024
1 parent d3a79ad commit e359533
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/src/components/ScheduleCreation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,12 @@ watch(
<div class="mb-1 text-sm font-medium text-gray-500 dark:text-gray-300">
{{ t("label.availableDays") }}
</div>
<bubble-select class="bubble-select" :options="scheduleDayOptions" v-model="scheduleInput.weekdays" />
<bubble-select
class="bubble-select"
:options="scheduleDayOptions"
v-model="scheduleInput.weekdays"
:required="true"
/>
</div>
<div>
<div class="mb-1 text-sm font-medium text-gray-500 dark:text-gray-300">
Expand Down

0 comments on commit e359533

Please sign in to comment.