diff --git a/src/dropdown/Dropdown.tsx b/src/dropdown/Dropdown.tsx index b473d0a20c..3924f22a2c 100644 --- a/src/dropdown/Dropdown.tsx +++ b/src/dropdown/Dropdown.tsx @@ -48,6 +48,7 @@ const Dropdown: React.FC & { }; const handleVisibleChange = (visible: boolean, context: PopupVisibleChangeContext) => { + if (disabled) return; togglePopupVisible(visible); popupProps?.onVisibleChange?.(visible, context); };