diff --git a/src/web/waiters/ControlsWaiter.mjs b/src/web/waiters/ControlsWaiter.mjs index 7ce1b14c..d1de20e8 100755 --- a/src/web/waiters/ControlsWaiter.mjs +++ b/src/web/waiters/ControlsWaiter.mjs @@ -355,7 +355,7 @@ class ControlsWaiter { icon.setAttribute("hide-args", "true"); icon.setAttribute("data-original-title", "Show arguments"); icon.children[0].innerText = "keyboard_arrow_down"; - Array.from(document.getElementsByClassName("hide-args-icon")).forEach(function(item){ + Array.from(document.getElementsByClassName("hide-args-icon")).forEach(function(item) { item.setAttribute("hide-args", "true"); item.innerText = "keyboard_arrow_down"; item.classList.add("hide-args-selected"); @@ -365,7 +365,7 @@ class ControlsWaiter { icon.setAttribute("hide-args", "false"); icon.setAttribute("data-original-title", "Hide arguments"); icon.children[0].innerText = "keyboard_arrow_up"; - Array.from(document.getElementsByClassName("hide-args-icon")).forEach(function(item){ + Array.from(document.getElementsByClassName("hide-args-icon")).forEach(function(item) { item.setAttribute("hide-args", "false"); item.innerText = "keyboard_arrow_up"; item.classList.remove("hide-args-selected"); diff --git a/src/web/waiters/RecipeWaiter.mjs b/src/web/waiters/RecipeWaiter.mjs index 36da47b4..3f5aa302 100755 --- a/src/web/waiters/RecipeWaiter.mjs +++ b/src/web/waiters/RecipeWaiter.mjs @@ -243,14 +243,12 @@ class RecipeWaiter { const uniqueIcons = icons.map(function(item) { return item.getAttribute("hide-args"); }).unique(); - console.log(uniqueIcons) const controlsIconStatus = document.getElementById("hide-icon").getAttribute("hide-args"); - console.log(controlsIconStatus) // If all icons are in the same state and the global icon isn't, fix it if (uniqueIcons.length === 1 && icon.getAttribute("hide-args") !== controlsIconStatus) { - this.manager.controls.hideRecipeArgsClick() + this.manager.controls.hideRecipeArgsClick(); } }