diff --git a/src/widgets/RRule.tsx b/src/widgets/RRule.tsx index 066a6cf..fe82068 100644 --- a/src/widgets/RRule.tsx +++ b/src/widgets/RRule.tsx @@ -122,7 +122,7 @@ export default function RRule(props: PropsType) { function updateRule(newOptions: Partial): void { let updatedOptions: RRuleOptions; if (!!options.freq && !!newOptions.freq && options.freq !== newOptions.freq) { - updatedOptions = { freq: newOptions.freq }; + updatedOptions = { freq: newOptions.freq, byday: ['SU'], bymonth: [1] }; } else { updatedOptions = { ...options, ...newOptions } ; }