show multiple selected week days in the order of the week day list

This commit is contained in:
MaysWind
2024-08-26 23:32:12 +08:00
parent c2fbd918dd
commit 720f83bd0b
3 changed files with 35 additions and 5 deletions
@@ -146,7 +146,7 @@ export default {
} else if (this.type === templateConstants.allTemplateScheduledFrequencyTypes.Weekly.type) {
if (this.frequencyValue.length) {
return this.$t('format.misc.everyMultiDaysOfWeek', {
days: this.$locale.getMultiWeekdayLongNames(this.frequencyValue)
days: this.$locale.getMultiWeekdayLongNames(this.frequencyValue, this.firstDayOfWeek)
});
} else {
return this.$t('Weekly');