diff options
Diffstat (limited to 'ui-react/src/components')
-rw-r--r-- | ui-react/src/components/dialogs/Loop/CreateLoopModal.js | 2 | ||||
-rw-r--r-- | ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui-react/src/components/dialogs/Loop/CreateLoopModal.js b/ui-react/src/components/dialogs/Loop/CreateLoopModal.js index e3820779..c5762a8d 100644 --- a/ui-react/src/components/dialogs/Loop/CreateLoopModal.js +++ b/ui-react/src/components/dialogs/Loop/CreateLoopModal.js @@ -72,7 +72,7 @@ export default class CreateLoopModal extends React.Component { handleDropdownListChange(e) { this.setState({ chosenTemplateName: e.value }); - TemplateService.getBlueprintMicroServiceTemplates(e.value).then(svgXml => { + TemplateService.getBlueprintMicroServiceTemplateSvg(e.value).then(svgXml => { if (svgXml.length !== 0) { this.setState({ content: svgXml }) } else { diff --git a/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js b/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js index 18c44404..cec6722d 100644 --- a/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js +++ b/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js @@ -113,7 +113,7 @@ export default class ViewLoopTemplatesModal extends React.Component { getBlueprintMicroServiceTemplate(templateName) { if (typeof templateName !== "undefined") { - TemplateService.getBlueprintMicroServiceTemplate(templateName).then(svgXml => { + TemplateService.getBlueprintMicroServiceTemplateSvg(templateName).then(svgXml => { if (svgXml.length !== 0) { this.setState({ content: svgXml }) } else { |