bugfix: If a button is disabled in the API, render it disabled [skip ci]

This commit is contained in:
jamesread
2024-10-20 22:56:40 +01:00
committed by James Read
parent be9b2a7c78
commit d7814ff6df

View File

@@ -33,6 +33,10 @@ class ActionButton extends ExecutionFeedbackButton {
this.setAttribute('role', 'none')
this.setAttribute('id', 'actionButton-' + this.actionId)
if (!json.canExec) {
this.btn.disabled = true
}
this.btn.setAttribute('id', 'actionButtonInner-' + this.actionId)
this.btn.title = json.title
this.btn.onclick = () => {