From e0bdcf1d033a63c3c77657759b8c32d01ab88140 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 8 Jul 2022 11:15:16 -0400 Subject: [PATCH] LP1976557: (follow-up) fix lint Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/catalog/record/holdings.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/record/holdings.component.ts b/Open-ILS/src/eg2/src/app/staff/catalog/record/holdings.component.ts index 56a22fb554..fa7343d4a4 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/record/holdings.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/catalog/record/holdings.component.ts @@ -527,7 +527,7 @@ export class HoldingsMaintenanceComponent implements OnInit { // Grab call numbers, copies, and related data. fetchHoldings(pager: Pager): Observable { - if (!this.recordId || this.recordId == -1) { return of([]); } + if (!this.recordId || this.recordId === -1) { return of([]); } return new Observable(observer => { -- 2.11.0