mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
🐛 Fix ungroup does not work for typographies
This commit is contained in:
parent
e1b62805e5
commit
d060ddaeae
2 changed files with 5 additions and 4 deletions
|
@ -38,6 +38,7 @@
|
||||||
- Fix unexpected 404 on deleting library that is used by deleted files
|
- Fix unexpected 404 on deleting library that is used by deleted files
|
||||||
- Fix inconsistent message on deleting library when a library is linked from deleted files
|
- Fix inconsistent message on deleting library when a library is linked from deleted files
|
||||||
- Fix change multiple colors with SVG [Taiga #3889](https://tree.taiga.io/project/penpot/issue/3889)
|
- Fix change multiple colors with SVG [Taiga #3889](https://tree.taiga.io/project/penpot/issue/3889)
|
||||||
|
- Fix ungroup does not work for typographies [Taiga #4195](https://tree.taiga.io/project/penpot/issue/4195)
|
||||||
|
|
||||||
### :arrow_up: Deps updates
|
### :arrow_up: Deps updates
|
||||||
### :heart: Community contributions by (Thank you!)
|
### :heart: Community contributions by (Thank you!)
|
||||||
|
|
|
@ -1736,10 +1736,10 @@
|
||||||
(apply st/emit!
|
(apply st/emit!
|
||||||
(->> typographies
|
(->> typographies
|
||||||
(filter #(str/starts-with? (:path %) path))
|
(filter #(str/starts-with? (:path %) path))
|
||||||
(map #(dwl/update-typography
|
(map #(dwl/rename-typography
|
||||||
(assoc % :name
|
file-id
|
||||||
(ungroup % path))
|
(:id %)
|
||||||
file-id))))
|
(ungroup % path)))))
|
||||||
(st/emit! (dwu/commit-undo-transaction))))
|
(st/emit! (dwu/commit-undo-transaction))))
|
||||||
|
|
||||||
on-context-menu
|
on-context-menu
|
||||||
|
|
Loading…
Reference in a new issue