-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
Description
When retrieving data for the month and year combobox, an error may occur during range validation because
components/primitives/src/calendar.rs
Line 1030 in d7b7ee7
if view_date.replace_month(min_month).unwrap() < calendar.min_date { |
components/primitives/src/calendar.rs
Line 1034 in d7b7ee7
if view_date.replace_month(max_month).unwrap() > calendar.max_date { |
components/primitives/src/calendar.rs
Line 1147 in d7b7ee7
if calendar.min_date.replace_month(month).unwrap() < calendar.min_date { |
components/primitives/src/calendar.rs
Line 1151 in d7b7ee7
if calendar.max_date.replace_month(month).unwrap() > calendar.max_date { |
causes a panic
ealmloff