Skip to content

Commit

Permalink
handles condition for yearly frequency in recurrence (#4604) (#5009)
Browse files Browse the repository at this point in the history
Co-authored-by: Bhuvanesh Patil <bhuvaneshpatil80642@gmail.com>
Co-authored-by: Andrea Cecchi <andrea.cecchi85@gmail.com>
  • Loading branch information
3 people authored Jul 21, 2023
1 parent 987c9c5 commit cdaeae3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions news/4498.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Handle condition for yearly frequency in recurrence @BhuvaneshPatil
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ class RecurrenceWidget extends Component {
break;
}

if (value) {
if (value === 0 || value) {
//set value
values[field] = value;
} else {
Expand Down

0 comments on commit cdaeae3

Please sign in to comment.