mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix weird gap on 1920px wide monitors
This commit is contained in:
parent
0ee13f9712
commit
d155b94b6f
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ export const ListsTable = (props: RouteComponentProps & Props) => {
|
|||
style: { float: "left", margin: "4px 4px" },
|
||||
pageSize: tablePageSize.pageSize
|
||||
}}
|
||||
scroll={{ x: tablePageSize.isNarrowWindow ? undefined : 1400 }}
|
||||
scroll={{ x: tablePageSize.isNarrowWindow ? undefined : 1892 }}
|
||||
onChange={(_pagination: PaginationConfig, _filters: Record<keyof List, string[]>, _sorter: SorterResult<List>, extra: TableCurrentDataSource<List>) =>
|
||||
setVisibleLists(extra.currentDataSource)}>
|
||||
<Table.Column<List>
|
||||
|
|
|
|||
Loading…
Reference in a new issue