From: Bill Erickson Date: Thu, 31 May 2018 19:23:22 +0000 (-0400) Subject: LP#1626157 ng-lint updates X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=592087237c9682c03fff0561548fe8636bfad05b;p=working%2FEvergreen.git LP#1626157 ng-lint updates Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts b/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts index 7d34f8e54f..c9993c3ba1 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts +++ b/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts @@ -22,7 +22,7 @@ export class EgGridColumnComponent implements OnInit { @Input() datatype: string; @Input() multiSortable: boolean; - // Used in conjunction with cellTemplate. + // Used in conjunction with cellTemplate @Input() cellContext: any; @Input() cellTemplate: TemplateRef; diff --git a/Open-ILS/src/eg2/src/app/staff/share/admin-page/admin-page.component.ts b/Open-ILS/src/eg2/src/app/staff/share/admin-page/admin-page.component.ts index debb823a4d..48b938f07b 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/admin-page/admin-page.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/admin-page/admin-page.component.ts @@ -37,7 +37,7 @@ export class EgAdminPageComponent implements OnInit { // Size of create/edito dialog. Uses large by default. @Input() dialogSize: 'sm' | 'lg' = 'lg'; - // If an org unit field is specified, an org unit filter + // If an org unit field is specified, an org unit filter // is added to the top of the page. @Input() orgField: string; @@ -167,7 +167,7 @@ export class EgAdminPageComponent implements OnInit { if (this.contextOrg) { // TODO: does the org path need to be configurable? const search = {}; - search[this.orgField] = + search[this.orgField] = this.org.fullPath(this.contextOrg, true); return this.pcrud.search(this.idlClass, search, searchOps); } diff --git a/Open-ILS/src/eg2/src/app/staff/staff.component.ts b/Open-ILS/src/eg2/src/app/staff/staff.component.ts index eca48ae46c..c795eb68a0 100644 --- a/Open-ILS/src/eg2/src/app/staff/staff.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/staff.component.ts @@ -27,7 +27,7 @@ export class EgStaffComponent implements OnInit { ngOnInit() { - // Fires on all in-staff-app router navigation, but not initial + // Fires on all in-staff-app router navigation, but not initial // page load. this.router.events.subscribe(routeEvent => { if (routeEvent instanceof NavigationEnd) {