fixes single-line inputs and textboxes squished when saving
| @@ -100,7 +100,7 @@ export async function loadInstructMode(data) { | ||
| 100 | 100 | |
| 101 | 101 | $element.on('input', async function () { |
| 102 | 102 | power_user.instruct[control.property] = control.isCheckbox ? !!$(this).prop('checked') : $(this).val(); |
| 103 | 103 | if (!CSS.supports('field-sizing', 'content') && $(this).is('textarea')) { |
| 104 | 104 | await resetScrollHeight($(this)); |
| 105 | 105 | } |
| 106 | 106 | saveSettingsDebounced(); |