We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf5d3e commit 4fef428Copy full SHA for 4fef428
app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js
@@ -84,8 +84,8 @@ define([
84
* @returns {Object}
85
*/
86
function getRoot() {
87
- var data = localStorage.getItem(root);
88
- var result = {};
+ var data = localStorage.getItem(root),
+ result = {};
89
90
if (!_.isNull(data) && typeof(data) != 'undefined') {
91
result = JSON.parse(data);
0 commit comments