Skip to content

Commit 1664ee6

Browse files
committed
MC-15981: Page Builder Render
1 parent dc2e73a commit 1664ee6

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ define([
1111
'use strict';
1212

1313
var root = 'appData',
14-
localStorage = window.localStorage,
14+
localStorage,
1515
hasSupport,
1616
storage;
1717

@@ -22,6 +22,7 @@ define([
2222
var key = '_storageSupported';
2323

2424
try {
25+
localStorage = window.localStorage;
2526
localStorage.setItem(key, 'true');
2627

2728
if (localStorage.getItem(key) === 'true') {

0 commit comments

Comments
 (0)