Merge pull request #38183 from Shllokkk/print-format-fix
fix: remove links from filters in report print pdf
This commit is contained in:
commit
11768a600e
1 changed files with 1 additions and 1 deletions
|
|
@ -1722,7 +1722,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
|
|||
if (docfield.fieldtype === "Check") {
|
||||
display_value = this.boolean_labels[cint(value)];
|
||||
} else {
|
||||
display_value = frappe.format(value, docfield);
|
||||
display_value = frappe.format(value, docfield, { for_print: true });
|
||||
}
|
||||
|
||||
return `<div class="filter-row">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue