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=0f46da264cd6615e17846d062c0bfcca80ebe68a;p=evergreen%2Ftadl.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 7db87e9ed3..16f1cbd753 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,