aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js')
-rw-r--r--ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js b/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js
index b0f601ec..3fa0c0ca 100644
--- a/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js
+++ b/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js
@@ -38,7 +38,7 @@ export default class ConfigurationPolicyModal extends React.Component {
show: true,
loopCache: this.props.loopCache,
jsonEditor: null,
- componentName: this.props.match.params.componentName
+ policyName: this.props.match.params.policyName
};
constructor(props, context) {
@@ -59,8 +59,8 @@ export default class ConfigurationPolicyModal extends React.Component {
}
else {
console.info("NO validation errors found in config policy data");
- this.state.loopCache.updateMicroServiceProperties(this.state.componentName, editorData[0]);
- LoopService.setMicroServiceProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getMicroServiceForName(this.state.componentName)).then(resp => {
+ this.state.loopCache.updateMicroServiceProperties(this.state.policyName, editorData[0]);
+ LoopService.setMicroServiceProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getMicroServiceForName(this.state.policyName)).then(resp => {
this.setState({ show: false });
this.props.history.push('/');
this.props.loadLoopFunction(this.state.loopCache.getLoopName());
@@ -78,12 +78,12 @@ export default class ConfigurationPolicyModal extends React.Component {
}
renderJsonEditor() {
- console.debug("Rendering ConfigurationPolicyModal ", this.state.componentName);
- var toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.componentName);
+ console.debug("Rendering ConfigurationPolicyModal ", this.state.policyName);
+ var toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.policyName);
if (toscaModel == null) {
return;
}
- var editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.componentName);
+ var editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.policyName);
JSONEditor.defaults.options.theme = 'bootstrap4';
//JSONEditor.defaults.options.iconlib = 'bootstrap2';