mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-27 23:21:32 +01:00
in product listing, don't truncate description
This commit is contained in:
@@ -91,8 +91,6 @@ def get_item_for_list_in_html(r):
|
||||
def scrub_item_for_list(r):
|
||||
if not r.website_description:
|
||||
r.website_description = "No description given"
|
||||
if len(r.website_description.split(" ")) > 24:
|
||||
r.website_description = " ".join(r.website_description.split(" ")[:24]) + "..."
|
||||
r.website_image = url_for_website(r.website_image)
|
||||
|
||||
def get_parent_item_groups(item_group_name):
|
||||
|
||||
Reference in New Issue
Block a user