Event dialog shows All instead of Every (1).
This commit is contained in:
		| @@ -599,15 +599,15 @@ const recurrenceSummary = computed(() => { | ||||
|         <div class="line compact"> | ||||
|           <Numeric | ||||
|             v-model="displayInterval" | ||||
|             :prefix-values="[{ value: 1, display: 'Every' }]" | ||||
|             :prefix-values="[{ value: 1, display: 'All' }]" | ||||
|             :min="2" | ||||
|             number-prefix="Every " | ||||
|             aria-label="Interval" | ||||
|           /> | ||||
|           <select v-model="displayFrequency" class="freq-select"> | ||||
|             <option value="weeks">{{ displayInterval === 1 ? 'week' : 'weeks' }}</option> | ||||
|             <option value="months">{{ displayInterval === 1 ? 'month' : 'months' }}</option> | ||||
|             <option value="years">{{ displayInterval === 1 ? 'year' : 'years' }}</option> | ||||
|             <option value="weeks">{{ 'weeks' }}</option> | ||||
|             <option value="months">{{ 'months' }}</option> | ||||
|             <option value="years">{{ 'years' }}</option> | ||||
|           </select> | ||||
|           <Numeric | ||||
|             class="occ-stepper" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Leo Vasanko
					Leo Vasanko