[PE SSE mobile] Fix Bug 50926

This commit is contained in:
ShimaginAndrey 2021-06-21 13:01:40 +03:00
parent f1b4663ec4
commit 7a3aca5c8f
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ class ContextMenu extends ContextMenuController {
text: 'OK',
onClick: () => {
const dontShow = $$('input[name="checkbox-show"]').prop('checked');
if (dontShow) LocalStorage.setItem("de-hide-copy-cut-paste-warning", 1);
if (dontShow) LocalStorage.setItem("pe-hide-copy-cut-paste-warning", 1);
}
}]
}).open();

View file

@ -142,7 +142,7 @@ class ContextMenu extends ContextMenuController {
text: 'OK',
onClick: () => {
const dontShow = $$('input[name="checkbox-show"]').prop('checked');
if (dontShow) LocalStorage.setItem("de-hide-copy-cut-paste-warning", 1);
if (dontShow) LocalStorage.setItem("sse-hide-copy-cut-paste-warning", 1);
}
}]
}).open();