diff options
Diffstat (limited to 'web/share/js/kvm/gpio.js')
-rw-r--r-- | web/share/js/kvm/gpio.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/share/js/kvm/gpio.js b/web/share/js/kvm/gpio.js index f357236b..54aff0a6 100644 --- a/web/share/js/kvm/gpio.js +++ b/web/share/js/kvm/gpio.js @@ -48,7 +48,7 @@ export function Gpio() { for (let type of ["switch", "button"]) { let el = $(`gpio-${type}-${channel}`); if (el) { - wm.switchEnabled(el, state.outputs[channel].online && !state.outputs[channel].busy); + wm.setElementEnabled(el, state.outputs[channel].online && !state.outputs[channel].busy); } } let el = $(`gpio-switch-${channel}`); @@ -62,7 +62,7 @@ export function Gpio() { } for (let selector of [".gpio-switch", ".gpio-button"]) { for (let el of $$$(selector)) { - wm.switchEnabled(el, false); + wm.setElementEnabled(el, false); } } } |