Rename key to path in actions and reducers for settings (tootsuite pr #6105)

This commit is contained in:
cwm
2018-01-09 09:48:14 -06:00
parent 7f4374d97d
commit 6d1c325167
7 changed files with 15 additions and 15 deletions

View File

@ -44,7 +44,7 @@ export default function push_subscriptions(state = initialState, action) {
case CLEAR_SUBSCRIPTION:
return initialState;
case SET_ALERTS:
return state.setIn(action.key, action.value);
return state.setIn(action.path, action.value);
default:
return state;
}