From 27534702fb731c6a8b33877ed596fd25c25b3b42 Mon Sep 17 00:00:00 2001
From: Alejandro Alonso <alejandroalonsofernandez@gmail.com>
Date: Mon, 28 Aug 2023 15:54:10 +0200
Subject: [PATCH] :bug: Fix viewer inspect code

---
 frontend/src/app/main/ui/viewer/inspect/render.cljs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/frontend/src/app/main/ui/viewer/inspect/render.cljs b/frontend/src/app/main/ui/viewer/inspect/render.cljs
index a3cf6cc4d..a2d944bfa 100644
--- a/frontend/src/app/main/ui/viewer/inspect/render.cljs
+++ b/frontend/src/app/main/ui/viewer/inspect/render.cljs
@@ -170,7 +170,9 @@
             (mf/use-memo (mf/deps objects)
                          #(svg-raw-container-factory objects))]
         (when (and shape (not (:hidden shape)))
-          (let [shape (gsh/translate-to-frame shape frame)
+          (let [shape (if frame
+                        (gsh/translate-to-frame shape frame)
+                        shape)
                 opts #js {:shape shape
                           :frame frame}]
             (case (:type shape)