mirror of
https://github.com/penpot/penpot.git
synced 2025-04-05 11:31:35 -05:00
🐛 Fix crash on copy paste a orphan copy inside a copy
This commit is contained in:
parent
1b17664ade
commit
9cbbe1565d
1 changed files with 3 additions and 3 deletions
|
@ -219,11 +219,11 @@
|
|||
(defn advance-shape-ref
|
||||
"Get the shape-ref of the near main of the shape, recursively repeated as many times
|
||||
as the given levels."
|
||||
[file container libraries shape levels & options]
|
||||
(let [ref-shape (find-ref-shape file container libraries shape options)]
|
||||
[file container libraries shape levels & {:keys [include-deleted?] :or {include-deleted? false}}]
|
||||
(let [ref-shape (find-ref-shape file container libraries shape :include-deleted? include-deleted? :with-context? true)]
|
||||
(if (or (nil? (:shape-ref ref-shape)) (not (pos? levels)))
|
||||
(:id ref-shape)
|
||||
(advance-shape-ref file container libraries ref-shape (dec levels) options))))
|
||||
(advance-shape-ref file (:container (meta ref-shape)) libraries ref-shape (dec levels) :include-deleted? include-deleted?))))
|
||||
|
||||
(defn find-ref-component
|
||||
"Locate the nearest component in the local file or libraries that is referenced by the
|
||||
|
|
Loading…
Add table
Reference in a new issue