Skip to content

Commit

Permalink
Merge pull request frappe#27037 from GursheenK/data-filter-from-indic…
Browse files Browse the repository at this point in the history
…ator

fix: data filter for status indicator in list
  • Loading branch information
GursheenK committed Jul 8, 2024
2 parents 1ed8724 + b34bdc0 commit 96219d9
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 96219d9

Please sign in to comment.