Browse Source

Fix regression from #3748 - properly set defaultColumns (#3750)

closed-social-glitch-2
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
bb911043de
1 changed files with 2 additions and 7 deletions
  1. +2
    -7
      app/javascript/mastodon/reducers/settings.js

+ 2
- 7
app/javascript/mastodon/reducers/settings.js View File

@ -60,12 +60,7 @@ const defaultColumns = Immutable.fromJS([
{ id: 'NOTIFICATIONS', uuid: uuid(), params: {} },
]);
const hydrate = (settings) => {
return initialState.withMutations((state) => {
state.mergeDeep(settings);
state.update('columns', defaultColumns, val => val);
});
};
const hydrate = (state, settings) => state.mergeDeep(settings).update('columns', (val = defaultColumns) => val);
const moveColumn = (state, uuid, direction) => {
const columns = state.get('columns');
@ -83,7 +78,7 @@ const moveColumn = (state, uuid, direction) => {
export default function settings(state = initialState, action) {
switch(action.type) {
case STORE_HYDRATE:
return hydrate(action.state.get('settings'));
return hydrate(state, action.state.get('settings'));
case SETTING_CHANGE:
return state.setIn(action.key, action.value);
case COLUMN_ADD:

Loading…
Cancel
Save