From 04d8be56a5b337aa074c8bfc7debb0c0069cb2ba Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 8 Dec 2021 10:42:20 -0500 Subject: [PATCH] LP#1942220: eg-item-location-select: fix use of contextOrgId Signed-off-by: Galen Charlton --- .../app/share/item-location-select/item-location-select.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts b/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts index 024e729563..e95124590c 100644 --- a/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts +++ b/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts @@ -253,7 +253,7 @@ export class ItemLocationSelectComponent } setFilterOrgs(): Promise { - const org = this.contextOrgId || this.auth.user().ws_ou(); + const org = this._contextOrgId || this.auth.user().ws_ou(); const contextOrgIds = this.org.ancestors(org, true); this.filterOrgsApplied = true; -- 2.11.0