Skip to content
Snippets Groups Projects
Commit 585a3315 authored by pkupczyk's avatar pkupczyk
Browse files

BIS-222 - Make STORAGE_CONFIRMED available in dataset search for admins - small fix

SVN: 26992
parent 1dc24adb
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ package ch.systemsx.cisd.openbis.generic.shared.basic.dto; ...@@ -18,7 +18,7 @@ package ch.systemsx.cisd.openbis.generic.shared.basic.dto;
/** /**
* Creates a criterion for a boolean field. Accepts following values: "true", "yes", "false", "no". * Creates a criterion for a boolean field. Accepts following values: "true", "yes", "false", "no".
* For other values is returns null. * For other values is returns "*".
* *
* @author pkupczyk * @author pkupczyk
*/ */
...@@ -36,7 +36,7 @@ public class SearchFieldBooleanCriterionFactory implements ISearchFieldCriterion ...@@ -36,7 +36,7 @@ public class SearchFieldBooleanCriterionFactory implements ISearchFieldCriterion
return new DetailedSearchCriterion(field, "false"); return new DetailedSearchCriterion(field, "false");
} else } else
{ {
return null; return new DetailedSearchCriterion(field, "*");
} }
} }
......
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