0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-27 00:49:28 -05:00

🐛 Fix problem with nil children

This commit is contained in:
alonso.torres 2024-01-22 10:53:39 +01:00 committed by Andrey Antukh
parent 844634e8c8
commit ff72a9ce70

View file

@ -24,6 +24,7 @@
;; FIXME: revisit this:
(defn propagate-wrapper-styles-child
[child wrapper-props]
(when (some? child)
(let [child-props-childs
(-> (obj/get child "props")
(obj/clone)
@ -39,7 +40,7 @@
(obj/set! "childs" child-props-childs))]
(-> (obj/clone child)
(obj/set! "props" child-props))))
(obj/set! "props" child-props)))))
(defn propagate-wrapper-styles
([children wrapper-props]