UI - Live filters preview - Better handling of watch preferences

This commit is contained in:
dgtlmoon
2024-10-05 19:40:36 +02:00
parent af4bafcff8
commit 043378d09c

View File

@@ -23,7 +23,7 @@ function request_textpreview_update() {
$('textarea:visible, input:visible').each(function () { $('textarea:visible, input:visible').each(function () {
const $element = $(this); // Cache the jQuery object for the current element const $element = $(this); // Cache the jQuery object for the current element
const name = $element.attr('name'); // Get the name attribute of the element const name = $element.attr('name'); // Get the name attribute of the element
data[name] = $element.is(':checkbox') ? ($element.is(':checked') ? $element.val() : undefined) : $element.val(); data[name] = $element.is(':checkbox') ? ($element.is(':checked') ? $element.val() : false) : $element.val();
}); });
$.abortiveSingularAjax({ $.abortiveSingularAjax({