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

This commit is contained in:
Praveenkumar Dhanasekar
2026-04-10 16:49:05 +05:30
committed by GitHub
parent 9cdfe74de6
commit 887d2a8379

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