diff --git a/src/cljs/auto_ap/subs.cljs b/src/cljs/auto_ap/subs.cljs index 1f488860..59e8bdfb 100644 --- a/src/cljs/auto_ap/subs.cljs +++ b/src/cljs/auto_ap/subs.cljs @@ -38,6 +38,9 @@ :<- [::user] :<- [::clients] (fn [[selected-clients user clients]] + (println "SELECTED" selected-clients + "USER" user + "CLIENTS" clients) (cond (= :mine selected-clients) (sort-by :name @@ -50,7 +53,7 @@ clients (sequential? selected-clients) - (filter (comp (set selected-clients) js/parseInt :id) clients) + (filter (comp (set selected-clients) :id) clients) :else nil)))