change key to path in timeline settings containers

th-downstream
cwm 7 years ago
parent cf027c74db
commit 90c35fe17a

@ -8,8 +8,8 @@ const mapStateToProps = state => ({
const mapDispatchToProps = dispatch => ({ const mapDispatchToProps = dispatch => ({
onChange (key, checked) { onChange (path, checked) {
dispatch(changeSetting(['community', ...key], checked)); dispatch(changeSetting(['community', ...path], checked));
}, },
}); });

@ -8,8 +8,8 @@ const mapStateToProps = state => ({
const mapDispatchToProps = dispatch => ({ const mapDispatchToProps = dispatch => ({
onChange (key, checked) { onChange (path, checked) {
dispatch(changeSetting(['direct', ...key], checked)); dispatch(changeSetting(['direct', ...path], checked));
}, },
}); });

@ -8,8 +8,8 @@ const mapStateToProps = state => ({
const mapDispatchToProps = dispatch => ({ const mapDispatchToProps = dispatch => ({
onChange (key, checked) { onChange (path, checked) {
dispatch(changeSetting(['home', ...key], checked)); dispatch(changeSetting(['home', ...path], checked));
}, },
onSave () { onSave () {

@ -8,8 +8,8 @@ const mapStateToProps = state => ({
const mapDispatchToProps = dispatch => ({ const mapDispatchToProps = dispatch => ({
onChange (key, checked) { onChange (path, checked) {
dispatch(changeSetting(['public', ...key], checked)); dispatch(changeSetting(['public', ...path], checked));
}, },
}); });

Loading…
Cancel
Save