These should be function calls

dec85c42f7e6db537ea06484972e514f64d790da

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +3 -3Ignore whitespace
public/scripts/instruct-mode.js+1 -1
@@ -99,7 +99,7 @@ export async function loadInstructMode(data) {
9999 }
100100
101101 $element.on('input', async function () {
102102 power_user.instruct[control.property] = control.isCheckbox ? !!$(this).prop('checked') : $(this).val();
103103 if (!CSS.supports('field-sizing', 'content')) {
104104 await resetScrollHeight($(this));
105105 }
public/scripts/power-user.js+2 -2
@@ -3099,7 +3099,7 @@ $(document).ready(() => {
30993099 });
31003100
31013101 $('#start_reply_with').on('input', function () {
31023102 power_user.user_prompt_bias = String($(this).val());
31033103 saveSettingsDebounced();
31043104 });
31053105
@@ -3631,7 +3631,7 @@ $(document).ready(() => {
36313631 });
36323632
36333633 $('#custom_stopping_strings').on('input', function () {
36343634 power_user.custom_stopping_strings = String($(this).val()).trim();
36353635 saveSettingsDebounced();
36363636 });
36373637