mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 17:15:04 +00:00
fix: CSS not applied to product title (#35630)
This commit is contained in:
@@ -78,9 +78,10 @@ erpnext.ProductList = class {
|
|||||||
let title_html = `<div style="display: flex; margin-left: -15px;">`;
|
let title_html = `<div style="display: flex; margin-left: -15px;">`;
|
||||||
title_html += `
|
title_html += `
|
||||||
<div class="col-8" style="margin-right: -15px;">
|
<div class="col-8" style="margin-right: -15px;">
|
||||||
<a class="" href="/${ item.route || '#' }"
|
<a href="/${ item.route || '#' }">
|
||||||
style="color: var(--gray-800); font-weight: 500;">
|
<div class="product-title">
|
||||||
${ title }
|
${ title }
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
@@ -201,4 +202,4 @@ erpnext.ProductList = class {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user