If I have multiple get (for ex) requests with different activeOrganizationUnitIds, the last one will be used.
The reason is that the _activeOrganizationUnitId variable is orchestrator-scoped instead of element-scoped.
To fix this:
Update line 267/228:
if (element._activeOrganizationUnitId !== -1) {
options.headers[ORGANIZATION_UNIT_ID_HEADER] = element._activeOrganizationUnitId;
If I have multiple get (for ex) requests with different activeOrganizationUnitIds, the last one will be used. The reason is that the _activeOrganizationUnitId variable is orchestrator-scoped instead of element-scoped.
To fix this:
Update line 267/228:
Add line 357: