monkey-front-core 0.0.316 → 0.0.317
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/esm2020/lib/store/reducers/monkeyecx-seeder.reducer.mjs +5 -2
- package/fesm2015/monkey-front-core.mjs +4 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.317.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.316.tgz +0 -0
|
@@ -2478,7 +2478,10 @@ const seederReducer = (keys) => {
|
|
|
2478
2478
|
[key]: handledState[key]
|
|
2479
2479
|
};
|
|
2480
2480
|
});
|
|
2481
|
-
|
|
2481
|
+
const handled = JSON.stringify(data);
|
|
2482
|
+
if (handled !== '{}') {
|
|
2483
|
+
localStorage.setItem('mecx-store', btoa(JSON.stringify(data)));
|
|
2484
|
+
}
|
|
2482
2485
|
}
|
|
2483
2486
|
catch (e) {
|
|
2484
2487
|
localStorage.removeItem('mecx-store');
|