From ceb6b4e0266d63c7685ba909cdf2fbdc4b20e21f Mon Sep 17 00:00:00 2001
From: felmer <franz-josef.elmer@id.ethz.ch>
Date: Tue, 21 May 2019 10:57:44 +0200
Subject: [PATCH] SSDM-4589: bug fixed in FormUtil.asHyperlink()

---
 .../eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js
index ee54b423043..0f19fad8006 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js
@@ -683,7 +683,7 @@ var FormUtil = new function() {
 	}
 	
 	this.asHyperlink = function(text) {
-		$("<a>", { "href" : text, "target" : "_blank"}).append(text);
+		return $("<a>", { "href" : text, "target" : "_blank"}).append(text);
 	}
 
 	//
-- 
GitLab