diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-04-02 15:31:34 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2020-04-02 15:31:34 +0200 |
commit | 84242153b1d2ae1cd55be003b4a45730a3f68a04 (patch) | |
tree | e8f76c2a43f0ad388effe597f274e4f2e2860297 /ui-react/src/components/dialogs/Loop | |
parent | aea6b2fe2418411a039c85d0673f5e392010a251 (diff) |
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 <sebastien.determe@intl.att.com>
Change-Id: Id74855e2935130337bc852df79b3a9fed0d444ac
Diffstat (limited to 'ui-react/src/components/dialogs/Loop')
-rw-r--r-- | ui-react/src/components/dialogs/Loop/CreateLoopModal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-react/src/components/dialogs/Loop/CreateLoopModal.js b/ui-react/src/components/dialogs/Loop/CreateLoopModal.js index e38207792..c5762a8d4 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 { |