mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
support current max tag width by default
This commit is contained in:
parent
ecc564a3ad
commit
0229845ee9
2 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
export interface IListDto {
|
||||
id: number;
|
||||
name: string;
|
||||
languages: IListLanguageDto[];
|
||||
name: string;
|
||||
softwareIds: number[];
|
||||
tags: IListTagDto[];
|
||||
updatedDate: string;
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ export const ListsTable = (props: IProps) => {
|
|||
{e.name}
|
||||
</span>)}
|
||||
</div>,
|
||||
width: 200,
|
||||
width: 212,
|
||||
headerClassName: "d-none d-md-block",
|
||||
className: "d-none d-md-block",
|
||||
show: props.columnVisibility.filter(
|
||||
|
|
|
|||
Loading…
Reference in a new issue