@opexa/portal-sdk 0.40.3 → 0.40.4
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/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4820,6 +4820,10 @@ var CellexpertManager = class {
|
|
|
4820
4820
|
localStorage.removeItem(CXD_STORAGE_KEY);
|
|
4821
4821
|
return;
|
|
4822
4822
|
}
|
|
4823
|
+
const oldValue = localStorage.getItem(CXD_STORAGE_KEY) ?? "";
|
|
4824
|
+
if (value === oldValue) {
|
|
4825
|
+
return;
|
|
4826
|
+
}
|
|
4823
4827
|
const n = /* @__PURE__ */ new Date();
|
|
4824
4828
|
const o = JSON.stringify({
|
|
4825
4829
|
value,
|