fix context settings inputs not showing newlines on initial load
| @@ -1761,7 +1761,7 @@ async function loadContextSettings() { | ||
| 1761 | 1761 | if (control.isCheckbox) { |
| 1762 | 1762 | $element.prop('checked', power_user.context[control.property]); |
| 1763 | 1763 | } else { |
| 1764 | 1764 | $element[0].text(innerText = power_user.context[control.property]); |
| 1765 | 1765 | } |
| 1766 | 1766 | console.log(`Setting ${$element.prop('id')} to ${power_user.context[control.property]}`); |
| 1767 | 1767 | |