From 4006fed7553b3f1231a3b6f838b81b85de9cbaa2 Mon Sep 17 00:00:00 2001 From: juanf <juanf@ethz.ch> Date: Tue, 16 May 2023 13:55:49 +0200 Subject: [PATCH] SSDM-13692 : Labels should need to use html escape codes anymore --- .../eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js index 97eb6e2ddef..571f1450770 100644 --- a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js +++ b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js @@ -819,7 +819,7 @@ var FormUtil = new function() { $controlLabel.append($line); } else { - $controlLabel.text(label + ":"); + $controlLabel.html(label + ":"); } } return $controlLabel; -- GitLab