0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-25 07:58:49 -05:00

Merge pull request #4703 from penpot/palba-bugfixing-009

Palba bugfixing 009
This commit is contained in:
Alejandro 2024-06-10 06:45:47 +02:00 committed by GitHub
commit d8184fb756
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 4 deletions

View file

@ -25,6 +25,8 @@
- Component Library is lost after exporting/importing in .zip format [Github #4672](https://github.com/penpot/penpot/issues/4672)
- Fix problem with moving+selection not working properly [Taiga #7943](https://tree.taiga.io/project/penpot/issue/7943)
- Fix problem with flex layout fit to content not positioning correctly children [Taiga #7537](https://tree.taiga.io/project/penpot/issue/7537)
- Fix black line is displaying after show main [Taiga #7653](https://tree.taiga.io/project/penpot/issue/7653)
- Fix "Share prototypes" modal remains open [Taiga #7442](https://tree.taiga.io/project/penpot/issue/7442)
## 2.0.3

View file

@ -138,7 +138,7 @@
(mf/deps page)
(fn []
(modal/show! :share-link {:page page :file file})
(modal/allow-click-outside!)))
(modal/disallow-click-outside!)))
handle-increase
(mf/use-fn

View file

@ -402,9 +402,11 @@
(st/emit! (dwl/nav-to-component-file library-id comp))))
do-show-component
#(if local-component?
(do-show-local-component)
(do-show-remote-component))
(fn []
(st/emit! dw/hide-context-menu)
(if local-component?
(do-show-local-component)
(do-show-remote-component)))
do-restore-component
#(let [;; Extract a map of component-id -> component-file in order to avoid duplicates