add sort to Name column

This commit is contained in:
Collin M. Barrett 2019-08-07 12:52:07 -05:00
parent 6d62e24ca4
commit e6d1827e48

View file

@ -63,6 +63,8 @@ export class AllListsTable extends React.Component<{}, State> {
<Table.Column<List>
title="Name"
dataIndex={nameof<List>("name")}
sorter={(a, b) => a.name.localeCompare(b.name)}
defaultSortOrder={"ascend"}
width={200}
fixed="left"
render={(text: string) => <div>{text}</div>} />