From 2cf871c21e6081ccb8902669819a4eaff49aceb6 Mon Sep 17 00:00:00 2001 From: Trusted Computer <75872475+trustedcomputer@users.noreply.github.com> Date: Sun, 11 Jun 2023 07:05:24 -0700 Subject: [PATCH] fix: CSS not applied to product title (#35630) --- erpnext/e_commerce/product_ui/list.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/erpnext/e_commerce/product_ui/list.js b/erpnext/e_commerce/product_ui/list.js index 894a7cb3d87..c8fd7672c8e 100644 --- a/erpnext/e_commerce/product_ui/list.js +++ b/erpnext/e_commerce/product_ui/list.js @@ -78,9 +78,10 @@ erpnext.ProductList = class { let title_html = `
`; title_html += `
- + +
${ title } +
`; @@ -201,4 +202,4 @@ erpnext.ProductList = class { } } -}; \ No newline at end of file +};