WebUI: remove child elements directly

This commit is contained in:
Chocobo1
2024-11-20 22:33:41 +08:00
parent e1bd1038c0
commit 72e033db79
2 changed files with 4 additions and 9 deletions

View File

@@ -535,8 +535,7 @@ window.qBittorrent.ContextMenu ??= (() => {
updateTagsSubMenu(tagList) {
const contextTagList = $("contextTagList");
while (contextTagList.firstChild !== null)
contextTagList.removeChild(contextTagList.firstChild);
contextTagList.replaceChildren();
const createMenuItem = (text, imgURL, clickFn) => {
const anchor = document.createElement("a");