From: Galen Charlton Date: Wed, 8 Dec 2021 15:42:20 +0000 (-0500) Subject: LP#1942220: eg-item-location-select: fix use of contextOrgId X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=04d8be56a5b337aa074c8bfc7debb0c0069cb2ba;p=working%2FEvergreen.git LP#1942220: eg-item-location-select: fix use of contextOrgId Signed-off-by: Galen Charlton --- 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;