Temp
This commit is contained in:
parent
307979b4a7
commit
3bf93d81fb
|
@ -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!)))
|
||||||
|
|
|
@ -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]
|
||||||
|
|
Loading…
Reference in New Issue