summaryrefslogtreecommitdiffstats
path: root/install/static/entity.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/entity.js')
-rw-r--r--install/static/entity.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/install/static/entity.js b/install/static/entity.js
index 804f8e22d..e77d46513 100644
--- a/install/static/entity.js
+++ b/install/static/entity.js
@@ -129,7 +129,7 @@ function _ipa_entity_setup(jobj,unspecified) {
};
function setup_search_facet() {
- var filter = $.bbq.getState(obj_name + '-filter', true);
+ var filter = $.bbq.getState(obj_name + '-filter', true) || '';
search_create(obj_name, ipa_entity_search_list[obj_name], jobj);
$('<input />',{
@@ -138,8 +138,7 @@ function _ipa_entity_setup(jobj,unspecified) {
click:new_on_click
}).appendTo($( "div#" + obj_name + " > div.search-controls"));
- if (typeof filter != 'undefined')
- search_load(jobj, filter, null, null);
+ search_load(jobj, filter, null, null);
};
function setup_details_facet(unspecified) {