From: Terran McCanna Date: Mon, 21 Jun 2021 16:36:27 +0000 (-0400) Subject: LP1881012 Typo in staff/circ/hold/app.js X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d84c5c723633f3dd5004cdb44ce546166ba4db42;p=evergreen%2Fmasslnc.git 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 --- 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);