fix: update return value in workstation list view indicator (backport #54198) (#54201)

Co-authored-by: Praveenkumar Dhanasekar <164200710+Praveenku-mar@users.noreply.github.com>
fix: update return value in workstation list view indicator (#54198)
This commit is contained in:
mergify[bot]
2026-04-10 11:20:49 +00:00
committed by GitHub
parent 4e828fd897
commit 22774fd810

View File

@@ -10,6 +10,6 @@ frappe.listview_settings["Workstation"] = {
Setup: "blue",
};
return [__(doc.status), color_map[doc.status], true];
return [__(doc.status), color_map[doc.status], "status,=," + doc.status];
},
};