mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-26 01:58:31 +00:00
Merge pull request #52649 from aerele/fix-sales-funnel-layout
fix: ensure layout has Bootstrap row and column
(cherry picked from commit ae0be7f6ce)
Co-authored-by: Vishnu Priya Baskaran <145791817+ervishnucs@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
.funnel-wrapper {
|
.funnel-wrapper {
|
||||||
margin: 15px;
|
width: calc(100% - 30px);
|
||||||
width: 100%;
|
margin-left: 30px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ frappe.pages["sales-funnel"].on_page_load = function (wrapper) {
|
|||||||
single_column: true,
|
single_column: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(wrapper).find(".layout-main").addClass("row");
|
||||||
|
$(wrapper).find(".layout-main-section-wrapper").addClass("col-md-12");
|
||||||
|
|
||||||
wrapper.sales_funnel = new erpnext.SalesFunnel(wrapper);
|
wrapper.sales_funnel = new erpnext.SalesFunnel(wrapper);
|
||||||
|
|
||||||
frappe.breadcrumbs.add("Selling");
|
frappe.breadcrumbs.add("Selling");
|
||||||
|
|||||||
Reference in New Issue
Block a user