From fe1e59bd3ba33900c43b941167bc2ca6a5eaaff7 Mon Sep 17 00:00:00 2001 From: sid597 Date: Mon, 25 Aug 2025 14:30:36 +0530 Subject: [PATCH] fix click on anyTags --- apps/roam/src/utils/renderNodeTagPopup.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/roam/src/utils/renderNodeTagPopup.tsx b/apps/roam/src/utils/renderNodeTagPopup.tsx index 4ea1204e1..460d2a08a 100644 --- a/apps/roam/src/utils/renderNodeTagPopup.tsx +++ b/apps/roam/src/utils/renderNodeTagPopup.tsx @@ -26,7 +26,7 @@ export const renderNodeTagPopupButton = ( reactRoot.style.left = "0"; reactRoot.style.width = "100%"; reactRoot.style.height = "100%"; - reactRoot.style.pointerEvents = "auto"; + reactRoot.style.pointerEvents = "none"; reactRoot.style.zIndex = "10"; wrapper.appendChild(reactRoot); @@ -76,6 +76,7 @@ export const renderNodeTagPopupButton = ( display: "block", width: "100%", height: "100%", + pointerEvents: "auto", }} /> }