efront 3.10.5 → 3.10.7
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/apps/pivot/api.yml
CHANGED
package/coms/zimoli/data.js
CHANGED
|
@@ -1048,7 +1048,8 @@ function getItem(instanceId, onlyFromLocalStorage = false) {
|
|
|
1048
1048
|
return data;
|
|
1049
1049
|
}
|
|
1050
1050
|
function hasItem(instanceId) {
|
|
1051
|
-
|
|
1051
|
+
const storageId = userPrefix + instanceId + pagePathName;
|
|
1052
|
+
return sessionStorage.getItem(storageId) || localStorage.getItem(storageId);
|
|
1052
1053
|
}
|
|
1053
1054
|
var instanceListenerMap = {};
|
|
1054
1055
|
var fireListener = function (instanceId, data) {
|