0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 19:41:27 -05:00

Detach typographies when deleted in the file library

This commit is contained in:
Andrés Moya 2021-06-30 09:52:53 +02:00 committed by Alonso Torres
parent dac7a6497f
commit 723cb3b546
3 changed files with 7 additions and 2 deletions

View file

@ -16,6 +16,7 @@
- Process numeric input changes only if the value actually changed.
- Remove unnecesary redirect from history when user goes to workspace from dashboard [Taiga #1820](https://tree.taiga.io/project/penpot/issue/1820).
- Detach shapes from deleted assets [Taiga #1850](https://tree.taiga.io/project/penpot/issue/1850).
- Fix tooltip position on view application [Taiga #1819](https://tree.taiga.io/project/penpot/issue/1819).
- Fix dashboard navigation on moving file to other team [Taiga #1817](https://tree.taiga.io/project/penpot/issue/1817).
- Fix workspace header presence styles and invalid link [Taiga #1813](https://tree.taiga.io/project/penpot/issue/1813).

View file

@ -499,7 +499,8 @@
update-node (fn [node]
(if-let [typography (get typographies (:typography-ref-id node))]
(merge node (d/without-keys typography [:name :id]))
node))]
(dissoc node :typography-ref-id
:typography-ref-file)))]
(generate-sync-text-shape shape container update-node)))
(defn- get-assets

View file

@ -1252,7 +1252,10 @@
(fn []
(if (or multi-typographies? multi-assets?)
(on-assets-delete)
(st/emit! (dwl/delete-typography (:id @state))))))
(st/emit! (dwu/start-undo-transaction)
(dwl/delete-typography (:id @state))
(dwl/sync-file file-id file-id)
(dwu/commit-undo-transaction)))))
editting-id (or (:rename-typography local) (:edit-typography local))]