From fc1eb7fe8893f7afbd31d8e12e196dee71425771 Mon Sep 17 00:00:00 2001 From: Rohan Bansal Date: Tue, 22 Oct 2019 13:11:01 +0530 Subject: [PATCH] fix: remove link formatter --- frappe/templates/emails/auto_email_report.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frappe/templates/emails/auto_email_report.html b/frappe/templates/emails/auto_email_report.html index 94af0c3cf8..a658c988a9 100644 --- a/frappe/templates/emails/auto_email_report.html +++ b/frappe/templates/emails/auto_email_report.html @@ -39,11 +39,7 @@ {% else %} - {% if col.fieldtype in ("Link", "Dynamic Link") and col.options %} - {{- frappe.utils.get_link_to_form(col.options, row[col.fieldname]) }} - {% else %} - {{- frappe.format(row[col.fieldname], col, row) -}} - {% endif %} + {{- frappe.format(row[col.fieldname], col, row) -}} {% endif %} {% endfor %}