Save settings when they are changed (#3743)
This commit is contained in:
		| @ -3,10 +3,14 @@ import axios from 'axios'; | ||||
| export const SETTING_CHANGE = 'SETTING_CHANGE'; | ||||
|  | ||||
| export function changeSetting(key, value) { | ||||
|   return { | ||||
|     type: SETTING_CHANGE, | ||||
|     key, | ||||
|     value, | ||||
|   return dispatch => { | ||||
|     dispatch({ | ||||
|       type: SETTING_CHANGE, | ||||
|       key, | ||||
|       value, | ||||
|     }); | ||||
|  | ||||
|     dispatch(saveSettings()); | ||||
|   }; | ||||
| }; | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user