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
diff --git a/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js b/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js
index 18c4440..cec6722 100644
--- a/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js
+++ b/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.js
@@ -113,7 +113,7 @@
 
 	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 {