🐛 Fix problem with tainted canvas in thumbnails

This commit is contained in:
alonso.torres
2025-11-18 13:05:56 +01:00
parent 8fd17c9c84
commit e8a26ef83b

View File

@@ -38,5 +38,8 @@
(some? position-data)
[:> svg/text-shape props]
(or (nil? position-data) is-component?)
;; Only use this for component preview, otherwise the dashboard thumbnails
;; will give a tainted canvas error because the `foreignObject` cannot be
;; rendered.
(and (nil? position-data) is-component?)
[:> fo/text-shape props])))