0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-04 11:01:20 -05:00

🐛 Fix remove content from boolean

This commit is contained in:
Alejandro Alonso 2023-07-31 12:55:53 +02:00 committed by Andrey Antukh
parent a49999186f
commit 0ec49e5e95

View file

@ -288,7 +288,7 @@
(let [all-ids (into empty-parents ids)
contains? (partial contains? all-ids)
xform (comp (map lookup)
(filter cph/group-shape?)
(filter #(or (cph/group-shape? %) (cph/bool-shape? %)))
(remove #(->> (:shapes %) (remove contains?) seq))
(map :id))
parents (into #{} xform all-parents)]