We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77eab36 commit 858c4ecCopy full SHA for 858c4ec
components/vc-picker/panels/PanelBody.tsx
@@ -93,7 +93,8 @@ function PanelBody<DateType>(_props: PanelBodyProps<DateType>) {
93
(picker === 'year' && Number(title) % 10 === 9),
94
...getCellClassName(currentDate),
95
})}
96
- onClick={() => {
+ onClick={e => {
97
+ e.stopPropagation();
98
if (!disabled) {
99
onSelect(currentDate);
100
}
0 commit comments