LP#1626157 ng-lint updates
authorBill Erickson <berickxx@gmail.com>
Thu, 31 May 2018 19:23:22 +0000 (15:23 -0400)
committerBill Erickson <berickxx@gmail.com>
Thu, 31 May 2018 19:23:22 +0000 (15:23 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts
Open-ILS/src/eg2/src/app/staff/share/admin-page/admin-page.component.ts
Open-ILS/src/eg2/src/app/staff/staff.component.ts

index 7d34f8e..c9993c3 100644 (file)
@@ -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<any>;
 
index debb823..48b938f 100644 (file)
@@ -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);
             }
index eca48ae..c795eb6 100644 (file)
@@ -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) {