| 1761 | if (control.isCheckbox) { | 1761 | if (control.isCheckbox) { |
| 1762 | $element.prop('checked', power_user.context[control.property]); | 1762 | $element.prop('checked', power_user.context[control.property]); |
| 1763 | } else { | 1763 | } else { |
| 1764 | $element.text(power_user.context[control.property]); | 1764 | $element[0].innerText = power_user.context[control.property]; |
| 1765 | } | 1765 | } |
| 1766 | console.log(`Setting ${$element.prop('id')} to ${power_user.context[control.property]}`); | 1766 | console.log(`Setting ${$element.prop('id')} to ${power_user.context[control.property]}`); |
| 1767 | | 1767 | |