Skip to content
Snippets Groups Projects
Commit d08cdfb8 authored by juanf's avatar juanf
Browse files

SSDM-2495 : And more Polishing, bugfix on search by properties

SVN: 34759
parent 80f3adb9
No related branches found
No related tags found
No related merge requests found
...@@ -909,10 +909,11 @@ function ServerFacade(openbisServer) { ...@@ -909,10 +909,11 @@ function ServerFacade(openbisServer) {
for(var i = 0; i < propertyTypeCodes.length ;i++) { for(var i = 0; i < propertyTypeCodes.length ;i++) {
var propertyTypeCode = propertyTypeCodes[i]; var propertyTypeCode = propertyTypeCodes[i];
var propertyTypeValue = propertyValues[i]; var propertyTypeValue = "\"" + propertyValues[i] + "\"";
properyKeyValueList.push({ var newMap = {};
propertyTypeCode : "\"" + propertyTypeValue + "\"" newMap[propertyTypeCode] = propertyTypeValue;
});
properyKeyValueList.push(newMap);
} }
this.searchSamples({ this.searchSamples({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment