Table not showing/rendering on journal page

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?

:default-queries are not meant for pages and tables. Should try a different approach:

  • dedicating a block inside such pages
  • replacing all ?p with ?b
  • using a custom :view