Make weekend days shown correctly in event dialog (settings still follow locale).
This commit is contained in:
parent
a3066946fc
commit
6f8d9d7774
@ -655,6 +655,7 @@ const recurrenceSummary = computed(() => {
|
||||
v-model="recurrenceWeekdays"
|
||||
:fallback="fallbackWeekdays"
|
||||
:first-day="calendarStore.config.first_day"
|
||||
:weekend="calendarStore.weekend"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -175,9 +175,9 @@ defineExpose({ open })
|
||||
<label class="ec-field">
|
||||
<span>First day of week</span>
|
||||
<select v-model.number="firstDay">
|
||||
<option v-for="(name, idx) in weekdayNames" :key="idx" :value="idx">
|
||||
{{ name.charAt(0).toUpperCase() + name.slice(1) }}
|
||||
</option>
|
||||
<option v-for="(name, idx) in weekdayNames" :key="idx" :value="idx">
|
||||
{{ name.charAt(0).toUpperCase() + name.slice(1) }}
|
||||
</option>
|
||||
</select>
|
||||
</label>
|
||||
<div class="weekend-select ec-field">
|
||||
@ -275,7 +275,7 @@ select {
|
||||
flex: 0 0 auto;
|
||||
min-width: 120px;
|
||||
}
|
||||
/* WeekdaySelector display tweaks */
|
||||
|
||||
.footer-row {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
|
Loading…
x
Reference in New Issue
Block a user