fix: breadcrumb for company list (#20051)

This commit is contained in:
Saqib 2019-12-23 17:28:00 +05:30 committed by Nabin Hait
parent 9078607600
commit c1b6b4ed35

View File

@ -0,0 +1,10 @@
frappe.listview_settings['Company'] = {
onload: () => {
frappe.breadcrumbs.add({
type: 'Custom',
module: __('Accounts'),
label: __('Accounts'),
route: '#modules/Accounts'
});
}
}