Show panel on first launch

This commit is contained in:
Daniel Compton 2018-03-02 17:02:03 +13:00
parent 76adc43e66
commit 47c83c5d34
2 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. This change
## [0.2.1] - Unreleased
### Changed
* Set default behaviour on first launch to show the re-frame-10x panel instead of keeping it hidden. This will help people better debug their setup when they are configuring re-frame-10x.
### Fixed
* Bug where under certain rare circumstances relating to the structure of your app-db, the Event panel could throw an error when transitioning from one epoch to another.

View File

@ -4,7 +4,7 @@
(defn init-db [debug?]
(let [panel-width% (localstorage/get "panel-width-ratio" 0.35)
show-panel? (localstorage/get "show-panel" false)
show-panel? (localstorage/get "show-panel" true)
selected-tab (localstorage/get "selected-tab" :app-db)
filter-items (localstorage/get "filter-items" [])
app-db-paths (into (sorted-map) (localstorage/get "app-db-paths" {}))