Skip to content

Commit

Permalink
Fix ignored-events goog define
Browse files Browse the repository at this point in the history
  • Loading branch information
lsenjov authored and kimo-k committed Oct 23, 2024
1 parent 48d5f90 commit 11b2a0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/day8/re_frame_10x.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,12 @@
(def project-config
(let [read reader.edn/read-string-maybe
keep-vals (remove (comp nil? second))
ignore #(do {:event-id % :event-str (str %)})
view #(do {:ns % :ns-str (str %)})
alias (fn [[k v]] {:ns-full (str k) :ns-alias (str v)})]
(->> {:debug? debug?
:retained-epochs history-size
:ignored-events (some-> ignored-events read sortable-uuid-map)
:ignored-events (some->> ignored-events read (map ignore) sortable-uuid-map)
:filtered-view-trace (some->> hidden-namespaces read (map view) sortable-uuid-map)
:app-db-follows-events? time-travel?
:low-level-trace (some-> ignored-libs read (pred-map #{:re-frame :reagent}))
Expand Down

0 comments on commit 11b2a0b

Please sign in to comment.