diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx index 50ac3ae6e..5d89dc01d 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx @@ -69,7 +69,8 @@ export class AllListsTable extends React.Component<{}, State> { title="Description" dataIndex={nameof("description")} - render={(text: string, record: List) => } /> + render={(text: string, record: List) => + } /> title="Software" dataIndex={nameof("syntaxId")} @@ -87,8 +88,7 @@ export class AllListsTable extends React.Component<{}, State> { width={123} fixed={this.state.isNarrowWindow ? undefined : "right"} render={(text: string, record: List, index: number) => - } - /> + } /> ); }