From 84242153b1d2ae1cd55be003b4a45730a3f68a04 Mon Sep 17 00:00:00 2001 From: sebdet Date: Thu, 2 Apr 2020 15:31:34 +0200 Subject: [PATCH] Fix bug in Create loop UI Fix the missing SVG representing the loop template in the Create loop dialog Issue-ID: CLAMP-811 Signed-off-by: sebdet Change-Id: Id74855e2935130337bc852df79b3a9fed0d444ac --- ui-react/src/api/TemplateService.js | 8 ++++---- ui-react/src/components/dialogs/Loop/CreateLoopModal.js | 2 +- ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ui-react/src/api/TemplateService.js b/ui-react/src/api/TemplateService.js index 615a87e9..eddd58df 100644 --- a/ui-react/src/api/TemplateService.js +++ b/ui-react/src/api/TemplateService.js @@ -55,19 +55,19 @@ export default class TemplateService { }); } - static getBlueprintMicroServiceTemplate(templateName) { + static getBlueprintMicroServiceTemplateSvg(templateName) { return fetch('/restservices/clds/v2/templates/' + templateName + ' /svgRepresentation', { method: 'GET', credentials: 'same-origin', }) .then(function (response) { - console.debug("getBlueprintMicroServiceTemplate response received: ", response.status); + console.debug("getBlueprintMicroServiceTemplateSvg response received: ", response.status); if (response.ok) { return response.text(); } else { - console.error("getBlueprintMicroServiceTemplates query failed"); + console.error("getBlueprintMicroServiceTemplateSvg query failed"); return {}; } }) .catch(function (error) { - console.error("getBlueprintMicroServiceTemplate error received", error); + console.error("getBlueprintMicroServiceTemplateSvg error received", error); return {}; }); } 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 { -- 2.16.6