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

SSDM-3026 : "All" field type bugfix, field value bugfix.

SVN: 35927
parent cccfc65f
No related branches found
No related tags found
No related merge requests found
...@@ -680,7 +680,9 @@ function ServerFacade(openbisServer) { ...@@ -680,7 +680,9 @@ function ServerFacade(openbisServer) {
var firstDotIndex = fieldName.indexOf("."); var firstDotIndex = fieldName.indexOf(".");
fieldNameType = fieldName.substring(0, firstDotIndex); fieldNameType = fieldName.substring(0, firstDotIndex);
fieldName = fieldName.substring(firstDotIndex + 1, fieldName.length); fieldName = fieldName.substring(firstDotIndex + 1, fieldName.length);
} else { }
if(!fieldValue) {
fieldValue = "*"; fieldValue = "*";
} }
......
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