fix: dots modal not closing when clicking top left

main
alex 2023-08-10 14:11:37 +00:00
parent f2a1eeb971
commit af8e338676
1 changed files with 7 additions and 1 deletions

View File

@ -154,7 +154,13 @@ function DotsModal({ isOpen, closeModal, data }) {
const bottomRightX = 200; // width
const bottomRightY = 52; // height of item
if (x < topLeftX || x > bottomRightX || y < topLeftY || y > bottomRightY) {
if (
x < topLeftX ||
x > bottomRightX ||
x < bottomRightX ||
y < topLeftY ||
y > bottomRightY
) {
closeModal();
}
};