From 894cf3f0ed2d51edff49db85d8773a1e9873095b Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 5 May 2020 13:32:00 +0200 Subject: [PATCH] :bug: Fix wrong arity call on dashboard data ns. --- frontend/src/uxbox/main/data/dashboard.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/uxbox/main/data/dashboard.cljs b/frontend/src/uxbox/main/data/dashboard.cljs index 8dc715066..0b366e9e3 100644 --- a/frontend/src/uxbox/main/data/dashboard.cljs +++ b/frontend/src/uxbox/main/data/dashboard.cljs @@ -88,7 +88,7 @@ (watch [_ state stream] (let [local (:dashboard-local state)] (rx/of (fetch-files (:project-id local)) - (fetch-projects (:team-id local))))))) + (fetch-projects (:team-id local) nil)))))) (defn initialize-recent @@ -104,7 +104,7 @@ ptk/WatchEvent (watch [_ state stream] (let [local (:dashboard-local state)] - (rx/of (fetch-projects (:team-id local)) + (rx/of (fetch-projects (:team-id local) nil) (fetch-recent-files (:team-id local))))))) @@ -122,7 +122,7 @@ ptk/WatchEvent (watch [_ state stream] (let [local (:dashboard-local state)] - (rx/of (fetch-projects (:team-id local)) + (rx/of (fetch-projects (:team-id local) nil) (fetch-files (:project-id local))))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;