fix: data filter value for status indicator
This commit is contained in:
parent
1ed87246d5
commit
b34bdc007a
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ frappe.get_indicator = function (doc, doctype, show_workflow_state) {
|
|||
|
||||
// based on status
|
||||
if (doc.status) {
|
||||
return [__(doc.status), frappe.utils.guess_colour(doc.status)];
|
||||
return [__(doc.status), frappe.utils.guess_colour(doc.status), "status,=," + doc.status];
|
||||
}
|
||||
|
||||
// based on enabled
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue