From 38cbaf0ead5ea03db155937e59f40e867ba70c49 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 22 Apr 2021 14:56:39 -0400 Subject: [PATCH] LP1904036 lint Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts | 2 +- Open-ILS/src/eg2/src/app/staff/circ/checkin/checkin.component.ts | 2 +- Open-ILS/src/eg2/src/app/staff/share/worklog/worklog.service.ts | 2 +- 3 files changed, 3 insertions(+), 3 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 003ff20d8d..4307608302 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 @@ -139,7 +139,7 @@ export class HoldComponent implements OnInit { this.store.getItem('circ.staff_placed_holds_fallback_to_ws_ou') .then(setting => this.puLibWsFallback = setting === true) - .then(_ => this.worklog.loadSettings()) + .then(_ => this.worklog.loadSettings()); this.org.list().forEach(org => { if (org.ou_type().can_have_vols() === 'f') { diff --git a/Open-ILS/src/eg2/src/app/staff/circ/checkin/checkin.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/checkin/checkin.component.ts index 4a8a6d6faa..357a2b2926 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/checkin/checkin.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/checkin/checkin.component.ts @@ -353,7 +353,7 @@ export class CheckinComponent implements OnInit, AfterViewInit { const row = rows[0]; if (row.record) { - const id = row.record.doc_id() + const id = row.record.doc_id(); const url = this.ngLocation.prepareExternalUrl( `/staff/catalog/record/${id}/holds`); diff --git a/Open-ILS/src/eg2/src/app/staff/share/worklog/worklog.service.ts b/Open-ILS/src/eg2/src/app/staff/share/worklog/worklog.service.ts index 5d284d343a..8fe3cc1ff5 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/worklog/worklog.service.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/worklog/worklog.service.ts @@ -9,7 +9,7 @@ export interface WorkLogEntry { when?: Date; msg?: string; action?: string; - actor?: string // staff username + actor?: string; // staff username item?: string; // barcode item_id?: number; user?: string; // patron family name -- 2.11.0