mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 20:59:11 +00:00
fix: Dont bold URL parts
closes https://github.com/frappe/frappe/issues/21445
This commit is contained in:
@@ -773,7 +773,7 @@ class Item(Document):
|
|||||||
|
|
||||||
rows = ""
|
rows = ""
|
||||||
for docname, attr_list in not_included.items():
|
for docname, attr_list in not_included.items():
|
||||||
link = "<a href='/app/Form/Item/{0}'>{0}</a>".format(frappe.bold(_(docname)))
|
link = f"<a href='/app/item/{docname}'>{frappe.bold(docname)}</a>"
|
||||||
rows += table_row(link, body(attr_list))
|
rows += table_row(link, body(attr_list))
|
||||||
|
|
||||||
error_description = _(
|
error_description = _(
|
||||||
|
|||||||
Reference in New Issue
Block a user