@acorex/components 6.5.66 → 6.5.67

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.
@@ -13808,7 +13808,7 @@ class AXTabPageService {
13808
13808
  }
13809
13809
  const result = this.tabs.find((c) => c.content === component &&
13810
13810
  ((!c.data) ||
13811
- JSON.parse(JSON.stringify(data)) === JSON.parse(JSON.stringify(c.data)) || JSON.stringify(data) === c[TAB_META_KEY].oldData));
13811
+ JSON.parse(JSON.stringify(data)) === JSON.parse(JSON.stringify(c.data)) || JSON.stringify(data) === JSON.stringify(c[TAB_META_KEY].oldData)));
13812
13812
  return result;
13813
13813
  }
13814
13814
  catch (error) {