Logic.setOrRemoveAssignment -> Utils.setOrRemoveAssignment

This commit is contained in:
Martin D Kealey 2021-11-25 17:50:07 +11:00
parent fb0216f5cf
commit 1abc8b807b

View file

@ -1877,7 +1877,7 @@ Logic.registerPanel(P_CONTAINER_EDIT, {
if (baseURL !== null) { if (baseURL !== null) {
// Assign URL to container // Assign URL to container
await Logic.setOrRemoveAssignment(tabId, baseURL, userContextId, false); await Utils.setOrRemoveAssignment(tabId, baseURL, userContextId, false);
// Clear form // Clear form
document.querySelector("#edit-container-panel-site-input").value = ""; document.querySelector("#edit-container-panel-site-input").value = "";
@ -1963,7 +1963,7 @@ Logic.registerPanel(P_CONTAINER_EDIT, {
// Lets show the message to the current tab // Lets show the message to the current tab
// TODO remove then when firefox supports arrow fn async // TODO remove then when firefox supports arrow fn async
const currentTab = await Logic.currentTab(); const currentTab = await Logic.currentTab();
Logic.setOrRemoveAssignment(currentTab.id, assumedUrl, userContextId, true); Utils.setOrRemoveAssignment(currentTab.id, assumedUrl, userContextId, true);
delete assignments[siteKey]; delete assignments[siteKey];
that.showAssignedContainers(assignments); that.showAssignedContainers(assignments);
}); });