LP1976557: (follow-up) fix lint
authorGalen Charlton <gmc@equinoxOLI.org>
Fri, 8 Jul 2022 15:15:16 +0000 (11:15 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Fri, 8 Jul 2022 15:15:16 +0000 (11:15 -0400)
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Open-ILS/src/eg2/src/app/staff/catalog/record/holdings.component.ts

index 56a22fb..fa7343d 100644 (file)
@@ -527,7 +527,7 @@ export class HoldingsMaintenanceComponent implements OnInit {
 
     // Grab call numbers, copies, and related data.
     fetchHoldings(pager: Pager): Observable<any> {
-        if (!this.recordId || this.recordId == -1) { return of([]); }
+        if (!this.recordId || this.recordId === -1) { return of([]); }
 
         return new Observable<any>(observer => {