bugfix: console.log made it into a commit

This commit is contained in:
jamesread
2023-04-03 09:29:08 +01:00
parent 86e5dfe2ee
commit 0911df0442
2 changed files with 0 additions and 2 deletions

View File

@@ -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) => {

View File

@@ -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 {