From 4157bc89c6b639ec4b5e0cf22f2f4b920133b165 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 7 Aug 2019 12:31:37 -0500 Subject: [PATCH] line break tidy --- .../src/modules/allListsTable/AllListsTable.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) => - } - /> + } /> ); }