From 2764ea0d96694b605073f1c73c2dda4604d2b1b8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 21 Oct 2016 16:41:16 +0200 Subject: [PATCH] Minor fix on colors page initialization event. --- src/uxbox/main/data/colors.cljs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/uxbox/main/data/colors.cljs b/src/uxbox/main/data/colors.cljs index cbf8b8efe..9235368e5 100644 --- a/src/uxbox/main/data/colors.cljs +++ b/src/uxbox/main/data/colors.cljs @@ -38,18 +38,12 @@ (defrecord Initialize [type id] rs/UpdateEvent (-apply-update [_ state] - (let [type (or type :builtin) - id (or id (if (= type :builtin) 1 nil)) + (let [type (or type :own) data {:type type :id id :selected #{}}] (-> state (assoc-in [:dashboard :colors] data) (assoc-in [:dashboard :section] :dashboard/colors)))) - ;; rs/EffectEvent - ;; (-apply-effect [_ state] - ;; (when (nil? (:color-colls-by-id state)) - ;; (reset! st/loader true))) - rs/WatchEvent (-apply-watch [_ state s] (rx/of (conditional-fetch))))