From 8b9f15f414f4f168b083dbe5bfe4a8a9cbd4aa3b Mon Sep 17 00:00:00 2001 From: Eva Marco Date: Thu, 5 Jun 2025 21:15:00 +0200 Subject: [PATCH] :bug: Fix select color tooltip error (#6648) --- frontend/src/app/main/ui/ds/tooltip/tooltip.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs b/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs index ec04d4326a..23d1655f2c 100644 --- a/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs +++ b/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs @@ -128,7 +128,8 @@ position-tooltip (fn [^js tooltip trigger-rect] (let [all-placements (get-fallback-order placement)] - (.showPopover ^js tooltip) + (when (.-isConnected tooltip) + (.showPopover ^js tooltip)) (loop [[current-placement & remaining-placements] all-placements] (when current-placement (reset! placement* current-placement)