From 19adafa6ec0fa9573983cc53f8a7930b4baf97d3 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 8 Sep 2019 18:52:04 -0500 Subject: [PATCH] better fix for empty column spacing ref #942 --- src/FilterLists.Web/src/components/listsTable/ListsTable.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx b/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx index eda6ab6c4..78ad060b3 100644 --- a/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx +++ b/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx @@ -58,8 +58,9 @@ export const ListsTable = (props: RouteComponentProps & Props) => { title="Info" key="Info" dataIndex={nameof("id")} + width={tablePageSize.isNarrowWindow ? 43 : undefined} className={styles.nogrow} - fixed="left" + fixed={tablePageSize.isNarrowWindow ? undefined : "left"} render={(_id: number, list: List) => } />