Skip to content
Snippets Groups Projects
Commit 85c7d6ae authored by Cam Saul's avatar Cam Saul
Browse files

fix circular dependency :sweat:

parent ded15360
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@
(post-select [_ {:keys [creator_id] :as card}]
(map->CardInstance (assoc card
:creator (delay (User creator_id))
:dashboard_count (delay (-> (select metabase.models.dashboard-card/DashboardCard
:dashboard_count (delay (-> (select @(ns-resolve 'metabase.models.dashboard-card 'DashboardCard)
(aggregate (count :*) :dashboards)
(where {:card_id (:id card)}))
first
......
......@@ -19,4 +19,4 @@
(set/rename-keys {:sizex :sizeX ; mildly retarded: H2 columns are all uppercase, we're converting them
:sizey :sizeY}) ; to all downcase, and the Angular app expected mixed-case names here
(assoc :card (delay (Card card_id))
:dashboard (delay (sel :one 'metabase.models.dashboard/Dashboard :id dashboard_id))))))
:dashboard (delay (sel :one 'Dashboard :id dashboard_id))))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment