diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx index 767983bb3..bbd87ecaa 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx @@ -76,7 +76,7 @@ export class AllListsTable extends React.Component<{}, State> { showSizeChanger: true, pageSizeOptions: this.state.pageSizeOptions }} - scroll={{ x: this.state.isNarrowWindow ? 576 : 1600 }}> + scroll={{ x: this.state.isNarrowWindow ? 576 : 1200 }}> title="Name" dataIndex={nameof("name")} @@ -104,7 +104,9 @@ export class AllListsTable extends React.Component<{}, State> { width={125} className={styles.nogrow} render={(languageIds: number[]) => - languageIds ? languageIds.includes(l.id))} /> : null} /> + languageIds + ? languageIds.includes(l.id))} /> + : null} /> title="Tags" dataIndex={nameof("tagIds")} @@ -112,7 +114,9 @@ export class AllListsTable extends React.Component<{}, State> { width={275} className={styles.nogrow} render={(tagIds: number[]) => - tagIds ? tagIds.includes(t.id))} /> : null} /> + tagIds + ? tagIds.includes(t.id))} /> + : null} /> title="Subscribe" dataIndex={nameof("viewUrl")} width={123}