Skip to content

Commit 792522b

Browse files
committed
Merge branch 'MAGETWO-63635' into develop-team-pr1
2 parents 4771d0c + 4fef428 commit 792522b

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Ui/view/base/web/js/lib/core/storage

1 file changed

+2
-2
lines changed

app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ define([
8484
* @returns {Object}
8585
*/
8686
function getRoot() {
87-
var data = localStorage.getItem(root);
88-
var result = {};
87+
var data = localStorage.getItem(root),
88+
result = {};
8989

9090
if (!_.isNull(data) && typeof(data) != 'undefined') {
9191
result = JSON.parse(data);

0 commit comments

Comments
 (0)