From: Galen Charlton Date: Fri, 27 Dec 2019 22:50:08 +0000 (-0500) Subject: LP#1857350: (follow-up) fix lint issue X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=12ae55c06e54c1631f1d4d6d5f578940da2fa895;p=evergreen%2Fpines.git LP#1857350: (follow-up) fix lint issue Signed-off-by: Galen Charlton Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/share/org-select/org-select.component.ts b/Open-ILS/src/eg2/src/app/share/org-select/org-select.component.ts index a02b0c08e4..81d1f6469a 100644 --- a/Open-ILS/src/eg2/src/app/share/org-select/org-select.component.ts +++ b/Open-ILS/src/eg2/src/app/share/org-select/org-select.component.ts @@ -100,6 +100,8 @@ export class OrgSelectComponent implements OnInit { // Does not fire on initialOrg @Output() onChange = new EventEmitter(); + 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,