fix(web): enable sorting Description column, fixes #1518

This commit is contained in:
Collin M. Barrett 2020-07-04 12:54:15 -05:00
parent 33c0fe42c8
commit c43805f6d2

View file

@ -114,6 +114,7 @@ export const ListsTable = (props: RouteComponentProps & Props) => {
title="Description"
key="Description"
dataIndex={nameof<List>("description")}
sorter={(a, b) => a.description.localeCompare(b.description)}
width={
!tablePageSize.isNarrowWindow && !tablePageSize.isWideWindow
? 423