Skip to content

Commit

Permalink
Fix app-db panel inspector ordering
Browse files Browse the repository at this point in the history
Fixes #305
  • Loading branch information
superstructor committed Jun 1, 2021
1 parent e8fa582 commit 5b0d583
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/day8/re_frame_10x/panels/app_db/subs.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
::paths
:<- [::root]
(fn [{:keys [paths]} _]
(map #(assoc (val %) :id (key %))
paths)))
(reverse
(map #(assoc (val %) :id (key %))
paths))))

;; [IJ] TODO: This doesn't appear to be used anywhere:
(rf/reg-sub
Expand Down

0 comments on commit 5b0d583

Please sign in to comment.