diff --git a/CHANGES.md b/CHANGES.md index ae1886fb9..d80b785b8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -35,6 +35,12 @@ ### :heart: Community contributions by (Thank you!) +## 1.8.4-alpha + +### :bug: Bugs fixed + +- Fix problem importing components [Taiga #2151](https://tree.taiga.io/project/penpot/issue/2151) + ## 1.8.3-alpha ### :sparkles: New features diff --git a/frontend/src/app/worker/import.cljs b/frontend/src/app/worker/import.cljs index cfb28bc07..29d3f37e6 100644 --- a/frontend/src/app/worker/import.cljs +++ b/frontend/src/app/worker/import.cljs @@ -340,7 +340,7 @@ (rx/filter cip/shape?) (rx/skip 1) (rx/skip-last 1) - (rx/mapcat (partial resolve-media file-id)) + (rx/mapcat (partial resolve-media context file-id)) (rx/reduce (partial process-import-node context) file) (rx/map fb/finish-component))))