mirror of
https://github.com/penpot/penpot.git
synced 2025-07-23 08:57:29 +02:00
🐛 Fix copy paste inside a text layer leaves pasted text transparent
This commit is contained in:
parent
0355e1bfc7
commit
655afa088d
2 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,8 @@
|
|||
|
||||
(defn immutable-map->map
|
||||
[obj]
|
||||
(into {} (map (fn [[k v]] [(keyword k) v])) (seq obj)))
|
||||
(let [data (into {} (map (fn [[k v]] [(keyword k) v])) (seq obj))]
|
||||
(assoc data :fills (js->clj (:fills data) :keywordize-keys true))))
|
||||
|
||||
;; --- DRAFT-JS HELPERS
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue