style: apply prettier formatting and remove trailing whitespace

This commit is contained in:
circlecrystalin 2026-01-20 18:17:40 +01:00
parent 65dbc16948
commit 43a03d4a44

View file

@ -707,22 +707,24 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder {
// Toggle all checkboxes in column selector
const toggle_all_checkboxes = function (should_check, should_clear_value) {
// Scope to column selector list checkboxes only
$body.find(".column-selector-list input[type='checkbox'][data-fieldname]").each(function () {
const $checkbox = $(this);
const is_checked = $checkbox.prop("checked");
// Only process checkboxes that need to be changed
if ((should_check && !is_checked) || (!should_check && is_checked)) {
$checkbox.prop("checked", should_check);
const fieldname = $checkbox.attr("data-fieldname");
const input = get_width_input(fieldname);
input.prop("disabled", !should_check);
if (should_clear_value) {
input.val("");
$body
.find(".column-selector-list input[type='checkbox'][data-fieldname]")
.each(function () {
const $checkbox = $(this);
const is_checked = $checkbox.prop("checked");
// Only process checkboxes that need to be changed
if ((should_check && !is_checked) || (!should_check && is_checked)) {
$checkbox.prop("checked", should_check);
const fieldname = $checkbox.attr("data-fieldname");
const input = get_width_input(fieldname);
input.prop("disabled", !should_check);
if (should_clear_value) {
input.val("");
}
}
}
});
});
update_column_count_message();
};