From d84c5c723633f3dd5004cdb44ce546166ba4db42 Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Mon, 21 Jun 2021 12:36:27 -0400 Subject: [PATCH] LP1881012 Typo in staff/circ/hold/app.js Fixes 'legnth' typo. Signed-off-by: Terran McCanna Signed-off-by: Josh Stompro Signed-off-by: Chris Sharp --- Open-ILS/web/js/ui/default/staff/circ/holds/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/holds/app.js b/Open-ILS/web/js/ui/default/staff/circ/holds/app.js index 9f4e1ce625..cc13f30d3b 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/holds/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/holds/app.js @@ -62,7 +62,7 @@ function($scope , $q , $routeParams , $window , $location , egCore , egHolds , e // if in clear mode... if (clear_mode && holds.length) { - if (!all_holds.legnth) all_holds = holds; + if (!all_holds.length) all_holds = holds; holds = holds.filter(function(h) { return h.hold.clear_me }); hold_count = holds.length; return provider.arrayNotifier(holds, offset, count); -- 2.11.0