LP#1857350: (follow-up) fix lint issue
authorGalen Charlton <gmc@equinoxinitiative.org>
Fri, 27 Dec 2019 22:50:08 +0000 (17:50 -0500)
committerBill Erickson <berickxx@gmail.com>
Mon, 30 Dec 2019 15:09:45 +0000 (10:09 -0500)
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/share/org-select/org-select.component.ts

index 7db87e9..16f1cbd 100644 (file)
@@ -100,6 +100,8 @@ export class OrgSelectComponent implements OnInit {
     // Does not fire on initialOrg
     @Output() onChange = new EventEmitter<IdlObject>();
 
+    sortedOrgs: IdlObject[] = [];
+
     // convenience method to get an IdlObject representing the current
     // selected org unit. One way of invoking this is via a template
     // reference variable.
@@ -110,8 +112,6 @@ export class OrgSelectComponent implements OnInit {
         return this.org.get(this.selected.id);
     }
 
-    sortedOrgs: IdlObject[] = [];
-
     constructor(
       private auth: AuthService,
       private store: StoreService,