From eb9f422a6bfc520c6d21ec85fcdc554268e9243a Mon Sep 17 00:00:00 2001 From: Gabriel Horner Date: Mon, 15 Apr 2024 16:10:45 -0400 Subject: [PATCH] fix: can't add a new page property --- src/main/frontend/components/property/value.cljs | 14 ++++++++++++-- src/main/frontend/handler/db_based/property.cljs | 6 ++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/main/frontend/components/property/value.cljs b/src/main/frontend/components/property/value.cljs index e5972ed18..180197434 100644 --- a/src/main/frontend/components/property/value.cljs +++ b/src/main/frontend/components/property/value.cljs @@ -69,7 +69,7 @@ (defn eid block-eid) - _ (assert (keyword? property-id) "property-id should be a keyword") + _ (assert (qualified-keyword? property-id) "property-id should be a keyword") block (db/entity repo block-eid) property (db/entity property-id) v (if (and (uuid? v)