diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2026-03-10 15:45:11 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2026-03-10 15:45:11 +0000 |
| commit | f3fcc1394286888697f20fc22822debf6707d72c (patch) | |
| tree | 8a778a930c057c99d0162a4bcf2b961736f7725f /resources/vue | |
| parent | 4627ad6b806eaa49832784c52a33ba93001437df (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
Diffstat (limited to 'resources/vue')
| -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 37391fd..44e3a9e 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> |
