fix context settings inputs not showing newlines on initial load

361ab2bc23abaf30a3db623631ca5c717401b124

RossAscends <124905043+RossAscends@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/power-user.js+1 -1
@@ -1761,7 +1761,7 @@ async function loadContextSettings() {
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]}`);
17671767