Skip to content

Commit d196b07

Browse files
committed
add min and max value
1 parent a06cb0e commit d196b07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/[locale]/[state]/analytics/components/filter-dropdown-options.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ export default function FilterDropdownOptions({
121121
}) || []
122122
}
123123
label="Select Months"
124-
// minValue={parseDate(minDate || '2023-01-04')}
125-
// maxValue={parseDate(maxDate || '2023-01-04')}
124+
minValue={parseDate(minDate || '2023-01-04')}
125+
maxValue={parseDate(maxDate || '2023-01-04')}
126126
onChange={(dates: any) => {
127127
setSelectedTimePeriod(
128128
dates.map(

0 commit comments

Comments
 (0)