mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-03-02 19:07:40 +01:00
Fix dynatemp neutralization
This commit is contained in:
parent
299bd9d563
commit
8848818d67
@ -636,7 +636,7 @@ jQuery(function () {
|
||||
for (const [id, value] of Object.entries(inputs)) {
|
||||
const inputElement = $(`#${id}`);
|
||||
if (inputElement.prop('type') === 'checkbox') {
|
||||
inputElement.prop('checked', value);
|
||||
inputElement.prop('checked', value).trigger('input');
|
||||
} else if (inputElement.prop('type') === 'number') {
|
||||
inputElement.val(value).trigger('input');
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user