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)) {
|
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 {
|
||||||
|
|
Loading…
Reference in New Issue