Changed file scan default sort order and order of columns. RPS-24

This commit is contained in:
Patrick Fic
2020-10-27 10:53:18 -07:00
parent 08ae22eef4
commit 7218dcd3ff

View File

@@ -35,18 +35,20 @@ export function ScanEstimateListMolecule({ scanLoading, estimates }) {
key: "ins_co_nm",
sorter: (a, b) => alphaSort(a.ins_co_nm, b.ins_co_nm),
},
{
title: "Last Name",
dataIndex: "ownr_ln",
key: "ownr_ln",
defaultSortOrder: "ascend",
sorter: (a, b) => alphaSort(a.ownr_ln, b.ownr_ln),
},
{
title: "First Name",
dataIndex: "ownr_fn",
key: "ownr_fn",
sorter: (a, b) => alphaSort(a.ownr_fn, b.ownr_fn),
},
{
title: "Last Name",
dataIndex: "ownr_ln",
key: "ownr_ln",
sorter: (a, b) => alphaSort(a.ownr_ln, b.ownr_ln),
},
{
title: "Vehicle",
dataIndex: "vehicle",