diff --git a/wise-webapp/src/main/webapp/jsp/iframeWrapper.jsp b/wise-webapp/src/main/webapp/jsp/iframeWrapper.jsp index 82c899ea..4b3d637b 100644 --- a/wise-webapp/src/main/webapp/jsp/iframeWrapper.jsp +++ b/wise-webapp/src/main/webapp/jsp/iframeWrapper.jsp @@ -23,7 +23,8 @@ iframeForm.setAttribute('method', context.method); iframeForm.setAttribute('action', context.action); - $('svgXml').setAttribute('value', window.document.getElementById('workspaceContainer').innerHTML); + var svgXml = context.method == "POST" ? window.document.getElementById('workspaceContainer').innerHTML : ""; + $('svgXml').setAttribute('value', svgXml); $('download').setAttribute('value', context.formatType); iframeForm.submit(); }