diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-06-28 22:11:21 -0700 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-06-28 22:11:21 -0700 |
commit | 2d8ebdcc7215a4c0cae9cade954f4c9a4efc5070 (patch) | |
tree | cf8047301d5b798015479015013953f1d1f5a5e2 /app/javascript | |
parent | 595c6de32c052f2a5e21307a0e43a6bd5d4b5c88 (diff) |
Initial store for local settings is now Immutable all the way down
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/reducers/local_settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/reducers/local_settings.js b/app/javascript/mastodon/reducers/local_settings.js index c6581fe2e..4f00c20d4 100644 --- a/app/javascript/mastodon/reducers/local_settings.js +++ b/app/javascript/mastodon/reducers/local_settings.js @@ -2,7 +2,7 @@ import { LOCAL_SETTING_CHANGE } from '../actions/local_settings'; import { STORE_HYDRATE } from '../actions/store'; import Immutable from 'immutable'; -const initialState = Immutable.Map({ +const initialState = Immutable.fromJS({ layout : 'auto', stretch : true, collapsed : { |