From bf9aa61f18f92c1cfb731dc81378d33760e1042d Mon Sep 17 00:00:00 2001
From: juanf <juanf>
Date: Tue, 3 Oct 2017 13:40:30 +0000
Subject: [PATCH] SSDM-5682 : Fix to search parse bug introduced when adding
 the new pop up to give warnings on generic searches

SVN: 38786
---
 .../html/js/views/AdvancedSearch/AdvancedSearchController.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/views/AdvancedSearch/AdvancedSearchController.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchController.js
index 1f8e4d41760..a37fcaa3268 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchController.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchController.js
@@ -32,7 +32,7 @@ function AdvancedSearchController(mainController, forceSearch) {
 		for(ruleKey in criteria.rules) {
 			var rule = criteria.rules[ruleKey];
 			numberOfRules++;
-			if(!rule.value || rule.value.trim() === "*") {
+			if(rule.value === null || rule.value === undefined || ("" + rule.value).trim() === "" || ("" + rule.value).trim() === "*") {
 				numberOfGeneralRules++;
 			}
 		}
-- 
GitLab