From dc8b48bdc5fa36850fb7d40023ae0d4befaea307 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 24 Aug 2020 10:49:12 -0400 Subject: [PATCH] Revert "LP#1332651 do not strip internal spaces in barcode" This reverts commit 10a0680e782a6cb7646d4f7d925c8feba44865c4. --- Open-ILS/web/js/ui/default/staff/circ/patron/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js index 0b1a1a7d52..08f059659b 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js @@ -474,8 +474,7 @@ function($scope , $location , egCore , egConfirmDialog , egUser , patronSvc , $u $scope.bcNotFound = null; $scope.optInRestricted = false; if (!args.barcode) return; - args.barcode = args.barcode.replace(/^\s/g,''); - args.barcode = args.barcode.replace(/\s$/g,''); + args.barcode = args.barcode.replace(/\s/g,''); // blur so next time it's set to true it will re-apply select() $scope.selectMe = false; -- 2.43.2