Browse Source

Fix default for :block/properties-order for #8930

Gabriel Horner 2 years ago
parent
commit
60b2eac6fc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/frontend/handler/editor.cljs

+ 1 - 1
src/main/frontend/handler/editor.cljs

@@ -869,7 +869,7 @@
           content (property/remove-empty-properties content)]
       {:block/uuid (:block/uuid block)
        :block/properties properties
-       :block/properties-order (or (keys properties) {})
+       :block/properties-order (or (keys properties) [])
        :block/content content})))
 
 (defn- batch-set-block-property!