Skip to content

Commit ec6efd1

Browse files
committed
fix webpack optimization error due to import
1 parent 6088094 commit ec6efd1

File tree

1 file changed

+2
-1
lines changed
  • components/dash-core-components/src/utils/calendar

1 file changed

+2
-1
lines changed

components/dash-core-components/src/utils/calendar/Calendar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
ArrowRightIcon,
1616
} from '@radix-ui/react-icons';
1717
import Input, {HTMLInputTypes} from '../../components/Input';
18-
import Dropdown from '../../fragments/Dropdown';
18+
import Dropdown from '../../components/Dropdown';
1919
import {DayOfWeek, CalendarDirection} from '../../types';
2020
import {CalendarMonth} from './CalendarMonth';
2121
import {
@@ -304,6 +304,7 @@ const CalendarComponent = ({
304304
<Dropdown
305305
options={monthOptions}
306306
value={activeMonth}
307+
clearable={false}
307308
maxHeight={250}
308309
searchable={false}
309310
setProps={({value}) => {

0 commit comments

Comments
 (0)