From: Remington Steed Date: Wed, 14 Jun 2017 16:43:39 +0000 (-0400) Subject: LP#1244547 Fix reference to new isFiltered variable X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2f3fce507a4717ce970fc493c3d88ae0f2358b60;p=working%2FEvergreen.git 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 --- 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);