I have this query set in my journal page through the config.edn:
{:title "🚧 **ACTIVE PROJECTS**"
:query [:find (pull ?p [*])
:where
[?p :block/name]
[?p :block/properties ?props]
[(get ?props :type) ?type]
[(= ?type "[[project]]")]
[(get ?props :status) ?status]
[(= ?status #{"DOING"})]]
:collapsed? true
:breadcrumb-show? false}
The problem is, it doesn’t show the table on my journal page when toggling it whereas it does show up if I put the query directly on a block as you can see below:
How do I fix this?