🐛 Fix problem while moving imported SVG's

This commit is contained in:
alonso.torres 2021-09-13 11:40:06 +02:00 committed by Andrés Moya
parent 8a158146cd
commit 45d55e87eb
2 changed files with 3 additions and 1 deletions

View file

@ -159,7 +159,8 @@
id))
svg-attrs (-> svg-attrs
(usvg/clean-attrs)
(usvg/update-attr-ids replace-id))
(usvg/update-attr-ids replace-id)
(dissoc :id))
attrs (-> svg-attrs (dissoc :style) (clj->js))
styles (-> svg-attrs (:style {}) (clj->js))]