0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 03:51:21 -05:00

🐛 Fix problem with empty styles

This commit is contained in:
alonso.torres 2023-01-23 11:05:28 +01:00
parent 8ee7915c1d
commit 088a8af345

View file

@ -147,7 +147,7 @@
(defn extract-svg-attrs
[render-id svg-defs svg-attrs]
(if (and (empty? svg-defs) (empty? svg-attrs))
[{} {}]
[#js {} #js {}]
(let [replace-id (fn [id]
(if (contains? svg-defs id)
(str render-id "-" id)