Skip to content

Commit

Permalink
fix: data filter value for status indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
GursheenK committed Jul 8, 2024
1 parent 1ed8724 commit b34bdc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/public/js/frappe/model/indicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b34bdc0

Please sign in to comment.