From af8e338676db31b2483d69b4369f9a7dc5683405 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 10 Aug 2023 14:11:37 +0000 Subject: [PATCH] fix: dots modal not closing when clicking top left --- src/Components/Modal/index.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Components/Modal/index.js b/src/Components/Modal/index.js index d943224..41fd2bb 100644 --- a/src/Components/Modal/index.js +++ b/src/Components/Modal/index.js @@ -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(); } };