Merge pull request #27418 from cogk/feat-allow-editable-cells-in-custom-reports
feat: Allow editable cells in custom reports
This commit is contained in:
commit
8bd2c8d8fa
1 changed files with 1 additions and 1 deletions
|
|
@ -1273,7 +1273,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
|
|||
// backend. Translating it again would cause unexpected behaviour.
|
||||
name: column.label,
|
||||
width: parseInt(column.width) || null,
|
||||
editable: false,
|
||||
editable: column.editable ?? false,
|
||||
compareValue: compareFn,
|
||||
format: (value, row, column, data, filter) => {
|
||||
if (this.report_settings.formatter) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue