@shisyamo4131/air-guard-v2-schemas 1.3.1-dev.20 → 1.3.1-dev.21
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/OperationResult.js +1 -1
package/package.json
CHANGED
package/src/OperationResult.js
CHANGED
|
@@ -574,7 +574,7 @@ export default class OperationResult extends Operation {
|
|
|
574
574
|
}
|
|
575
575
|
|
|
576
576
|
// Sync customerId if siteId changed
|
|
577
|
-
if (this.siteId === this._beforeData.siteId) return;
|
|
577
|
+
if (this.siteId === this._beforeData.siteId && this.customerId) return;
|
|
578
578
|
await this._syncCustomerId();
|
|
579
579
|
}
|
|
580
580
|
|