fix : 7223 Clicking Outside Fields domain link email phone Close Them (#7804)

fixes #7223

https://github.com/user-attachments/assets/1150e96f-4fb5-40ba-ac17-89d8b2ab16e7
This commit is contained in:
prathameshpatil5181 2024-11-07 18:10:28 +05:30 committed by GitHub
parent f3a38679ae
commit 3be30651b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,9 +64,14 @@ export const MultiItemFieldInput = <T,>({
onCancel?.();
};
const handleDropdownCloseOutside = (event: MouseEvent | TouchEvent) => {
onCancel?.();
event.stopImmediatePropagation();
};
useListenClickOutside({
refs: [containerRef],
callback: handleDropdownClose,
callback: handleDropdownCloseOutside,
});
useScopedHotkeys(Key.Escape, handleDropdownClose, hotkeyScope);