Skip to content

Commit

Permalink
table column width should be set as minWidth to be noticed
Browse files Browse the repository at this point in the history
resolves #2286
  • Loading branch information
Fred Lefévère-Laoide authored and Fred Lefévère-Laoide committed Dec 3, 2024
1 parent 23b6901 commit 1c7fdd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/taipy-gui/src/components/Taipy/PaginatedTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ const PaginatedTable = (props: TaipyPaginatedTableProps) => {
sortDirection={orderBy === columns[col].dfid && order}
sx={
columns[col].width
? { width: columns[col].width }
? { minWidth: columns[col].width }
: nbWidth
? { minWidth: `${100 / nbWidth}%` }
: undefined
Expand Down

0 comments on commit 1c7fdd2

Please sign in to comment.