From 0911df04425424ff116c30747a91b5d9ae53656c Mon Sep 17 00:00:00 2001 From: jamesread Date: Mon, 3 Apr 2023 09:29:08 +0100 Subject: [PATCH] bugfix: console.log made it into a commit --- webui/js/ActionButton.js | 1 - webui/js/ArgumentForm.js | 1 - 2 files changed, 2 deletions(-) diff --git a/webui/js/ActionButton.js b/webui/js/ActionButton.js index 3dd073d..cdc4421 100644 --- a/webui/js/ActionButton.js +++ b/webui/js/ActionButton.js @@ -18,7 +18,6 @@ class ActionButton extends window.HTMLElement { this.setAttribute('role', 'none') this.btn.title = json.title this.btn.onclick = () => { - console.log(json.arguments) if (json.arguments.length > 0) { const frm = document.createElement('argument-form') frm.setup(json, (args) => { diff --git a/webui/js/ArgumentForm.js b/webui/js/ArgumentForm.js index 4242a9f..3fbba58 100644 --- a/webui/js/ArgumentForm.js +++ b/webui/js/ArgumentForm.js @@ -113,7 +113,6 @@ class ArgumentForm extends window.HTMLElement { throw new Error(res.statusText) } }).then((json) => { - console.log(json.valid) if (json.valid) { domEl.setCustomValidity('') } else {