diff --git a/public/scripts/instruct-mode.js b/public/scripts/instruct-mode.js index 0767fad61..006d570bf 100644 --- a/public/scripts/instruct-mode.js +++ b/public/scripts/instruct-mode.js @@ -100,7 +100,7 @@ export async function loadInstructMode(data) { $element.on('input', async function () { power_user.instruct[control.property] = control.isCheckbox ? !!$(this).prop('checked') : $(this).val(); - if (!CSS.supports('field-sizing', 'content')) { + if (!CSS.supports('field-sizing', 'content') && $(this).is('textarea')) { await resetScrollHeight($(this)); } saveSettingsDebounced();