Fix dynatemp neutralization

This commit is contained in:
Cohee 2024-02-24 15:32:12 +02:00
parent 299bd9d563
commit 8848818d67
1 changed files with 1 additions and 1 deletions

View File

@ -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 {