Merge pull request #25082 from AfshanKhan/add-blank-for-status-issue-reports

fix: added blank option for status in report related to issue
This commit is contained in:
Deepesh Garg 2021-04-13 14:59:01 +05:30 committed by GitHub
commit c05f4ee1aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -52,6 +52,7 @@ frappe.query_reports["Issue Analytics"] = {
label: __("Status"),
fieldtype: "Select",
options:[
"",
{label: __('Open'), value: 'Open'},
{label: __('Replied'), value: 'Replied'},
{label: __('Resolved'), value: 'Resolved'},
@ -138,4 +139,4 @@ frappe.query_reports["Issue Analytics"] = {
}
});
}
};
};

View File

@ -39,6 +39,7 @@ frappe.query_reports["Issue Summary"] = {
label: __("Status"),
fieldtype: "Select",
options:[
"",
{label: __('Open'), value: 'Open'},
{label: __('Replied'), value: 'Replied'},
{label: __('Resolved'), value: 'Resolved'},
@ -70,4 +71,4 @@ frappe.query_reports["Issue Summary"] = {
options: "User"
}
]
};
};