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 ae3ce4e commit e0c6479Copy full SHA for e0c6479
src/ui/options.js
@@ -236,6 +236,11 @@ document.querySelector("#version").textContent = _("Version",
236
237
async function copyContainer() {
238
cookieStoreId = containerSelect.value;
239
+ if (cookieStoreId == "default") {
240
+ alert("Cannot replace the default policy.")
241
+ containerCopy.value = "blank";
242
+ return;
243
+ }
244
let copyCookieStoreId = containerCopy.value;
245
let copyContainerName = containerCopy.options[containerCopy.selectedIndex].text;
246
let copyPolicy = await UI.getPolicy(copyCookieStoreId);
0 commit comments