0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-12 07:41:43 -05:00

🐛 Fix problem with overlay positions in viewer

This commit is contained in:
alonso.torres 2024-09-05 10:48:00 +02:00
parent a180c33a32
commit 6a161267ba
2 changed files with 3 additions and 1 deletions

View file

@ -77,6 +77,7 @@
- Fix scroll on color picker modal [Taiga #8353](https://tree.taiga.io/project/penpot/issue/8353)
- Fix components are not dragged from the group to the assets tab [Taiga #8273](https://tree.taiga.io/project/penpot/issue/8273)
- Fix problem with SVG import [Github #4888](https://github.com/penpot/penpot/issues/4888)
- Fix problem with overlay positions in viewer [Taiga #8464](https://tree.taiga.io/project/penpot/issue/8464)
## 2.1.5

View file

@ -427,7 +427,8 @@
(let [childs (mapv #(get objects %) (:shapes (unchecked-get props "shape")))
props (obj/merge! #js {} props
#js {:childs childs
:objects objects})]
:objects objects
:all-objects all-objects})]
(when (not-empty childs)
[:> group-wrapper props])))))