mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix dynatemp neutralization
This commit is contained in:
@ -636,7 +636,7 @@ jQuery(function () {
|
|||||||
for (const [id, value] of Object.entries(inputs)) {
|
for (const [id, value] of Object.entries(inputs)) {
|
||||||
const inputElement = $(`#${id}`);
|
const inputElement = $(`#${id}`);
|
||||||
if (inputElement.prop('type') === 'checkbox') {
|
if (inputElement.prop('type') === 'checkbox') {
|
||||||
inputElement.prop('checked', value);
|
inputElement.prop('checked', value).trigger('input');
|
||||||
} else if (inputElement.prop('type') === 'number') {
|
} else if (inputElement.prop('type') === 'number') {
|
||||||
inputElement.val(value).trigger('input');
|
inputElement.val(value).trigger('input');
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user