@veritree/services 2.29.0 → 2.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/helpers/api.js +2 -2
package/package.json
CHANGED
package/src/helpers/api.js
CHANGED
|
@@ -234,12 +234,12 @@ export default class Api {
|
|
|
234
234
|
// and for that, we can't use the org id and type in
|
|
235
235
|
// the session.
|
|
236
236
|
if (isOrgIdAs) {
|
|
237
|
-
this.orgId =
|
|
237
|
+
this.orgId = argsClone.org_id_as;
|
|
238
238
|
delete argsClone.org_id_as;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
if (isOrgTypeAs) {
|
|
242
|
-
this.orgType =
|
|
242
|
+
this.orgType = argsClone.org_type_as;
|
|
243
243
|
delete argsClone.org_type_as;
|
|
244
244
|
}
|
|
245
245
|
|