|
@@ -114,6 +114,11 @@
|
|
|
page-ref (string/lower-case page-ref)]
|
|
|
(list 'contains? sym (text/page-ref-un-brackets! page-ref)))
|
|
|
|
|
|
+ (and (vector? f)
|
|
|
+ (= (first f) 'page-property)
|
|
|
+ (keyword? (util/nth-safe f 2)))
|
|
|
+ (update f 2 (fn [k] (keyword (string/replace (name k) "_" "-"))))
|
|
|
+
|
|
|
:else
|
|
|
f)) query)))
|
|
|
|
|
@@ -132,4 +137,4 @@
|
|
|
k [:custom query']]
|
|
|
(pprint "inputs (post-resolution):" resolved-inputs)
|
|
|
(pprint "query-opts:" query-opts)
|
|
|
- (apply react/q repo k query-opts query inputs))))
|
|
|
+ (apply react/q repo k query-opts query inputs))))
|