From 12ae55c06e54c1631f1d4d6d5f578940da2fa895 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 27 Dec 2019 17:50:08 -0500 Subject: [PATCH] LP#1857350: (follow-up) fix lint issue Signed-off-by: Galen Charlton Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/share/org-select/org-select.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.11.0