mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 16:04:46 +00:00
fix(minor): update task list label from Closed to Completed
This commit is contained in:
@@ -9,7 +9,7 @@ frappe.listview_settings['Task'] = {
|
|||||||
listview.call_for_selected_items(method, {"status": "Open"});
|
listview.call_for_selected_items(method, {"status": "Open"});
|
||||||
});
|
});
|
||||||
|
|
||||||
listview.page.add_menu_item(__("Set as Closed"), function() {
|
listview.page.add_menu_item(__("Set as Completed"), function() {
|
||||||
listview.call_for_selected_items(method, {"status": "Completed"});
|
listview.call_for_selected_items(method, {"status": "Completed"});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user