fix: Maintain checkbox selection on Bulk Edit List Views

This commit is contained in:
Gavin D'souza 2023-02-13 13:37:05 +05:30
parent f1b087df24
commit c3e526b475

View file

@ -1832,7 +1832,6 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList {
this.disable_list_update = true;
bulk_operations.edit(this.get_checked_items(true), field_mappings, () => {
this.disable_list_update = false;
this.clear_checked_items();
this.refresh();
});
},