diff --git a/public/scripts/power-user.js b/public/scripts/power-user.js index 2fdb27958..476d9f0aa 100644 --- a/public/scripts/power-user.js +++ b/public/scripts/power-user.js @@ -1761,7 +1761,7 @@ async function loadContextSettings() { if (control.isCheckbox) { $element.prop('checked', power_user.context[control.property]); } else { - $element.text(power_user.context[control.property]); + $element[0].innerText = power_user.context[control.property]; } console.log(`Setting ${$element.prop('id')} to ${power_user.context[control.property]}`);