fix: Dont bold URL parts

closes https://github.com/frappe/frappe/issues/21445
This commit is contained in:
Ankush Menat 2023-07-11 18:19:29 +05:30
parent be5881280f
commit 7e4b6683e6

View File

@ -773,7 +773,7 @@ class Item(Document):
rows = ""
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))
error_description = _(