From 9182244e888ba24091ab519229507e61d07ee693 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 15 Dec 2015 15:49:19 +0200 Subject: [PATCH] WIP: fix bug on own cursored mixin. --- frontend/uxbox/util.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/uxbox/util.cljs b/frontend/uxbox/util.cljs index e5025c427..942dcce30 100644 --- a/frontend/uxbox/util.cljs +++ b/frontend/uxbox/util.cljs @@ -60,7 +60,7 @@ (defn- cursored-will-umount [state] - (doseq [[k v] (:rum/props state) + (doseq [v (:rum/props state) :when (satisfies? IWatchable v)] (remove-watch v (cursored-key state))) state)