This commit is contained in:
Daniel Compton 2018-02-12 07:16:41 +13:00
parent 307979b4a7
commit 3bf93d81fb
2 changed files with 11 additions and 6 deletions

View File

@ -5,7 +5,10 @@
;; Use this namespace with the :preloads compiler option to perform the necessary setup for enabling tracing: ;; Use this namespace with the :preloads compiler option to perform the necessary setup for enabling tracing:
;; {:compiler {:preloads [day8.re-frame.trace.preload] ...}} ;; {:compiler {:preloads [day8.re-frame.trace.preload] ...}}
(rf/clear-subscription-cache!)
(trace/init-db!) (defonce _
(defonce _ (trace/init-tracing!)) (do
(trace/inject-devtools!) (rf/clear-subscription-cache!)
(trace/init-db!)
(defonce _ (trace/init-tracing!))
(trace/inject-devtools!)))

View File

@ -474,11 +474,13 @@
(assoc sub :previous-value (:previous-value state)) (assoc sub :previous-value (:previous-value state))
sub)] sub)]
sub))) sub)))
(sort-by :order sub-sort-val) ;; Also sort by subscription-id #_(sort-by :order sub-sort-val) ;; Also sort by subscription-id
#_(sort-by :path))] (sort-by :path))]
subx)) subx))
(rf/reg-sub (rf/reg-sub
:subs/pre-epoch-state :subs/pre-epoch-state
:<- [:subs/current-epoch-sub-state] :<- [:subs/current-epoch-sub-state]