mirror of
https://github.com/penpot/penpot.git
synced 2025-08-07 14:38:33 +02:00
🚧 Initial work on ops based page data updates.
This commit is contained in:
parent
5b96e1e9fd
commit
db768f356b
5 changed files with 94 additions and 44 deletions
|
@ -139,8 +139,9 @@
|
|||
;; --- Helpers
|
||||
|
||||
(defn decode-row
|
||||
[{:keys [data metadata] :as row}]
|
||||
[{:keys [data metadata operations] :as row}]
|
||||
(when row
|
||||
(cond-> row
|
||||
data (assoc :data (blob/decode data))
|
||||
metadata (assoc :metadata (blob/decode metadata)))))
|
||||
metadata (assoc :metadata (blob/decode metadata))
|
||||
operations (assoc :operations (blob/decode operations)))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue