Skip to content

Commit

Permalink
Fix incorrect key for external-window? setting
Browse files Browse the repository at this point in the history
  • Loading branch information
superstructor committed Jun 22, 2021
1 parent ecfcb95 commit 8b44247
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## 1.1.7 (2021-06-22)

#### Fixed

- Fix settings being mangled by false `get`. `refer-clojure :exclude` is :scream:. Fixes [#307](https://github.com/day8/re-frame-10x/issues/307).
- Fix incorrect key for `external-window?` setting

## 1.1.6 (2021-06-22)

Expand Down
2 changes: 1 addition & 1 deletion src/day8/re_frame_10x/navigation/events.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

(rf/reg-event-fx
::launch-external-success
[(local-storage/after "external-window" [:settings :external-window?])]
[(local-storage/save "external-window?" [:settings :external-window?])]
(fn [{:keys [db]} _]
{:db (-> db
(assoc-in [:settings :external-window?] true)
Expand Down

0 comments on commit 8b44247

Please sign in to comment.