diff --git a/CHANGES.md b/CHANGES.md index 767aec2f0..463d3d2ac 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,6 +9,12 @@ ### :boom: Breaking changes ### :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 587e03eae..34c6ae3f5 100644 --- a/frontend/src/app/worker/import.cljs +++ b/frontend/src/app/worker/import.cljs @@ -338,7 +338,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))))