From: Galen Charlton Date: Fri, 8 Jul 2022 15:15:16 +0000 (-0400) Subject: LP1976557: (follow-up) fix lint X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e0bdcf1d033a63c3c77657759b8c32d01ab88140;p=evergreen%2Fmasslnc.git LP1976557: (follow-up) fix lint Signed-off-by: Galen Charlton --- 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 => {