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

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 16:50:32 +05:30
committed by GitHub
parent cb24d9404d
commit 0a3f9f0b9f

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];
},
};