fix: order list

This commit is contained in:
Tienson Qin
2023-08-01 20:14:49 +08:00
parent 3cc7977d93
commit 2913af2d96
6 changed files with 29 additions and 29 deletions

View File

@@ -20,5 +20,6 @@
(defn get-property
"Get the value of block's property `key`"
[block key]
(when-let [properties (:block/properties block)]
(lookup properties key)))
(let [block (db/entity (:db/id block))]
(when-let [properties (:block/properties block)]
(lookup properties key))))