From 60fc30b7097bab9e4ede97427d1226569cf207fc Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 13 Nov 2016 17:19:47 +0100 Subject: [PATCH] Properly handle the route params in navigate event. --- src/uxbox/util/router.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uxbox/util/router.cljs b/src/uxbox/util/router.cljs index 9cfc61ea0b..93d501776e 100644 --- a/src/uxbox/util/router.cljs +++ b/src/uxbox/util/router.cljs @@ -37,7 +37,7 @@ (defrecord Navigate [id params] rs/EffectEvent (-apply-effect [_ state] - (r/navigate! +router+ id {}))) + (r/navigate! +router+ id params))) (defn navigate ([id] (navigate id nil))