@m4l/components 9.2.30 → 9.2.32
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.
|
@@ -645,8 +645,8 @@ const createAreasStore = (initProps, storeDevtoolsEnabled = false) => {
|
|
|
645
645
|
area3.layouts = newBreakPointsLayouts;
|
|
646
646
|
area3.layoutItemsIds = newHashLayoutItems;
|
|
647
647
|
area3.status = "loaded";
|
|
648
|
-
const layoutSelected = getParmsFromValue(COOKIE_WINDOW_SELECTED, dataResponse) || "";
|
|
649
|
-
helperSelectLayout(state, areaId, layoutSelected, false);
|
|
648
|
+
const layoutSelected = getParmsFromValue(COOKIE_WINDOW_SELECTED, dataResponse) || { currentLayoutId: "" };
|
|
649
|
+
helperSelectLayout(state, areaId, layoutSelected?.currentLayoutId || "", false);
|
|
650
650
|
});
|
|
651
651
|
}).catch((_response) => {
|
|
652
652
|
set((state) => {
|
package/mockServiceWorker.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Please do NOT serve this file on production.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
|
-
const PACKAGE_VERSION = '2.7.
|
|
11
|
+
const PACKAGE_VERSION = '2.7.4'
|
|
12
12
|
const INTEGRITY_CHECKSUM = '00729d72e3b82faf54ca8b9621dbb96f'
|
|
13
13
|
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
|
|
14
14
|
const activeClientIds = new Set()
|