From dbdac93b379aaaf0e5e6d8b8f4abd27a5a2ffa22 Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Fri, 11 Nov 2016 09:52:32 +0000 Subject: [PATCH] SSDM-4375 : bugfix, double quotes where added twice generating wrong results, this is already managed on the main function. SVN: 37312 --- .../1/as/webapps/eln-lims/html/js/server/ServerFacade.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/server/ServerFacade.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js index aec22835a51..152d3b93b55 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js @@ -1334,7 +1334,7 @@ function ServerFacade(openbisServer) { for(var i = 0; i < propertyTypeCodes.length ;i++) { var propertyTypeCode = propertyTypeCodes[i]; - var propertyTypeValue = "\"" + propertyValues[i] + "\""; + var propertyTypeValue = propertyValues[i]; var newMap = {}; newMap[propertyTypeCode] = propertyTypeValue; -- GitLab