diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2026-03-10 15:45:31 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2026-03-10 15:45:31 +0000 |
| commit | 3a13ae05b9954be1216788c60be615a50c372522 (patch) | |
| tree | a7a6c626177bcf833e24d227eb4594655a21fd1c | |
| parent | a7a54bfc800f5440d6c7e7ab4af9b7d169edc40c (diff) | |
fixed pre-selection of the day of week when editing a calendar date with monthly repetition, fixes #6341
Closes #6341
Merge request studip/studip!4808
(cherry picked from commit f3fcc1394286888697f20fc22822debf6707d72c)
24d99e7b RepetitionInput.vue: use value instead of v-model to pass a value to the DayOfWeekSelect component
Co-authored-by: Moritz Strohm <strohm@data-quest.de>
| -rw-r--r-- | resources/vue/components/form_inputs/RepetitionInput.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/vue/components/form_inputs/RepetitionInput.vue b/resources/vue/components/form_inputs/RepetitionInput.vue index ab033bd..8540945 100644 --- a/resources/vue/components/form_inputs/RepetitionInput.vue +++ b/resources/vue/components/form_inputs/RepetitionInput.vue @@ -172,7 +172,7 @@ <section v-if="['MONTHLY', 'YEARLY'].includes(repetition_type_value) && repetition_month_type_value === 'dow'"> <label> {{ $gettext('Wiederholung an einem bestimmten Wochentag') }} - <day-of-week-select :name="name + '_dow'" v-model="repetition_dow_value[0]" + <day-of-week-select :name="name + '_dow'" :value="repetition_dow_value[0]" :with_indeterminate="true"></day-of-week-select> </label> <label> |
