mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 11:19:09 +00: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):
|
def scrub_item_for_list(r):
|
||||||
if not r.website_description:
|
if not r.website_description:
|
||||||
r.website_description = "No description given"
|
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)
|
r.website_image = url_for_website(r.website_image)
|
||||||
|
|
||||||
def get_parent_item_groups(item_group_name):
|
def get_parent_item_groups(item_group_name):
|
||||||
|
|||||||
Reference in New Issue
Block a user