Redux changes and refactoring

This commit is contained in:
Scott E. Graves
2019-06-06 15:52:56 -05:00
parent 6502657e3c
commit 0bbfddc17c
9 changed files with 233 additions and 211 deletions

View File

@@ -18,7 +18,7 @@ class Configuration extends IPCContainer {
this.setRequestHandler(Constants.IPC_Set_Config_Values_Reply, this.onSetConfigValuesReply);
this.sendRequest(Constants.IPC_Get_Config_Template, {
StorageType: this.props.DisplayConfiguration,
Provider: this.props.DisplayConfiguration,
Version: this.props.version,
});
}
@@ -152,7 +152,7 @@ class Configuration extends IPCContainer {
Template: arg.data.Template,
}, ()=> {
this.sendRequest(Constants.IPC_Get_Config, {
StorageType: this.props.DisplayConfiguration,
Provider: this.props.DisplayConfiguration,
Version: this.props.version,
});
});
@@ -192,7 +192,7 @@ class Configuration extends IPCContainer {
this.sendRequest(Constants.IPC_Set_Config_Values, {
Items: changedItems,
StorageType: this.props.DisplayConfiguration,
Provider: this.props.DisplayConfiguration,
Version: this.props.version,
});
});