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 ee1188e commit f3ad0eaCopy full SHA for f3ad0ea
src/ui/options.js
@@ -223,6 +223,11 @@ document.querySelector("#version").textContent = _("Version",
223
224
async function copyContainer() {
225
cookieStoreId = containerSelect.value;
226
+ if (cookieStoreId == "default") {
227
+ alert("Cannot replace the default policy.")
228
+ containerCopy.value = "blank";
229
+ return;
230
+ }
231
let copyCookieStoreId = containerCopy.value;
232
let copyContainerName = containerCopy.options[containerCopy.selectedIndex].text;
233
let copyPolicy = await UI.getPolicy(copyCookieStoreId);
0 commit comments