From 2f3fce507a4717ce970fc493c3d88ae0f2358b60 Mon Sep 17 00:00:00 2001 From: Remington Steed Date: Wed, 14 Jun 2017 12:43:39 -0400 Subject: [PATCH] LP#1244547 Fix reference to new isFiltered variable This commit completes the intention of the previous commit, which accidentally checked the isFiltered object instead of its value. Signed-off-by: Remington Steed Signed-off-by: Galen Charlton --- Open-ILS/xul/staff_client/server/admin/org_unit_settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/admin/org_unit_settings.js b/Open-ILS/xul/staff_client/server/admin/org_unit_settings.js index 20bfff2d78..85a9ea87c1 100644 --- a/Open-ILS/xul/staff_client/server/admin/org_unit_settings.js +++ b/Open-ILS/xul/staff_client/server/admin/org_unit_settings.js @@ -133,7 +133,7 @@ function osDraw(specific_setting) { names.push(key); } - if(dojo.byId('isFiltered') == 'true') { + if(dojo.byId('isFiltered').value == 'true') { osLimitSeen(dojo.byId('searchBox').value); } else { osDrawNames(names); -- 2.11.0