_.extend(CartDetailedView.prototype, {
// Renaming the breadcrumb of the page from shopping cart to My cart
getBreadcrumbPages: function (e) {
const breadCrumb = [
{
text: Utils.translate(‘My Cart’),
href: ‘/cart’
}
]
return breadCrumb;
},
});

_.extend(CartDetailedView.prototype, {
// Renaming the breadcrumb of the page from shopping cart to My cart
getBreadcrumbPages: function (e) {
const breadCrumb = [
{
text: Utils.translate(‘My Cart’),
href: ‘/cart’
}
]
return breadCrumb;
},
});
