Revert "when using multiple select must have and array with default values"

This reverts commit 7595be4df7.
master
Tom Hacohen 2020-07-02 09:04:23 +03:00
parent 7595be4df7
commit 2b8fa751b7
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ export default function RRule(props: PropsType) {
function updateRule(newOptions: Partial<RRuleOptions>): void {
let updatedOptions: RRuleOptions;
if (!!options.freq && !!newOptions.freq && options.freq !== newOptions.freq) {
updatedOptions = { freq: newOptions.freq, byday: ['SU'], bymonth: [1] };
updatedOptions = { freq: newOptions.freq };
} else {
updatedOptions = { ...options, ...newOptions } ;
}