IO-1458 Production Board Sort ORder

This commit is contained in:
Patrick Fic
2021-10-12 13:50:25 -07:00
parent 0b98d04bac
commit b010c9ecb0

View File

@@ -16,5 +16,4 @@ export function statusSort(a, b, statusList) {
return (
statusList.findIndex((x) => x === a) > statusList.findIndex((x) => x === b)
);
//return (a ? a.toLowerCase() : "").localeCompare(b ? b.toLowerCase() : "");
}