0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-16 08:51:32 -05:00

🐛 Don't send empty changes on fix broken shape links

This commit is contained in:
Andrey Antukh 2023-08-02 13:36:43 +02:00
parent 88261c2ec3
commit eae5dfc828

View file

@ -31,8 +31,10 @@
(mapcat (partial generate-changes :component-id)
(vals (:components data))))]
(rx/of (dch/commit-changes
{:origin it
:redo-changes (vec changes)
:undo-changes []
:save-undo? false}))))))
(if (seq changes)
(rx/of (dch/commit-changes
{:origin it
:redo-changes (vec changes)
:undo-changes []
:save-undo? false}))
(rx/empty))))))