fix: remove links from filters in report print pdf
This commit is contained in:
parent
dc220d2b94
commit
d7ea336263
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") {
|
if (docfield.fieldtype === "Check") {
|
||||||
display_value = this.boolean_labels[cint(value)];
|
display_value = this.boolean_labels[cint(value)];
|
||||||
} else {
|
} else {
|
||||||
display_value = frappe.format(value, docfield);
|
display_value = frappe.format(value, docfield, { for_print: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
return `<div class="filter-row">
|
return `<div class="filter-row">
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue