From 8c24c33bec5195f53358c3f29df133ad836bd006 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 14 May 2021 17:26:43 -0400 Subject: [PATCH] LP#1917944k: (follow-up) fix ng lint issue Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts b/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts index 4aaf7fa013..ef10228109 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts @@ -439,8 +439,9 @@ export class HoldComponent implements OnInit { break; case 'opac.default_pickup_location': - if(value) - this.pickupLib = Number(value); + if (value) { + this.pickupLib = Number(value); + } break; case 'opac.default_phone': -- 2.11.0