1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 14:18:17 +01:00

Fix: google translate extenstion close side panel (#4625)

* Fix gtx-trans close sidepanel

* reset the package-lock.json file
This commit is contained in:
Abdelrhman Kamal 2023-10-24 16:19:53 +03:00 committed by GitHub
parent 4f3b891e45
commit 309cf3d6d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

2
package-lock.json generated
View File

@ -11025,4 +11025,4 @@
}
}
}
}
}

View File

@ -3,7 +3,9 @@ import { useEffect } from 'react';
export function useOutsideClick(ref: any, callback: any) {
useEffect(() => {
const listener = (event: any) => {
const isClickedOutside = !ref?.current?.contains(event.target);
const isClickedOutside =
!ref?.current?.contains(event.target) &&
!document?.getElementById('gtx-trans')?.contains(event.target);
if (isClickedOutside) {
callback();
}