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)