From f26ab8bf89df7884c64d4ddfdf6af27de2ab3710 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 16 Oct 2018 16:12:08 +0200 Subject: [PATCH] url to export shouldn't contain double '/' --- frontend-js/src/main/js/gui/leftPanel/ProjectInfoPanel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend-js/src/main/js/gui/leftPanel/ProjectInfoPanel.js b/frontend-js/src/main/js/gui/leftPanel/ProjectInfoPanel.js index de651e16a8..128c32184a 100644 --- a/frontend-js/src/main/js/gui/leftPanel/ProjectInfoPanel.js +++ b/frontend-js/src/main/js/gui/leftPanel/ProjectInfoPanel.js @@ -167,7 +167,7 @@ ProjectInfoPanel.prototype._createInfoPanelGui = function () { var exportButton = Functions.createElement({ type: "a", - href: ServerConnector.getServerBaseUrl() + "/export.xhtml?id=" + projectId, + href: ServerConnector.getServerBaseUrl() + "export.xhtml?id=" + projectId, content: '<i class="fa fa-mail-forward"> EXPORT', xss: false }); -- GitLab