Skip to content

Commit

Permalink
Fixed: provide an opportunity to expand any table column as much as p…
Browse files Browse the repository at this point in the history
…ossible (#2386)

* Fixed: provide an opportunity to expand any table column as much as possible

* Fixed: table cells' minWidth has been corrected
  • Loading branch information
moon-ds authored Sep 22, 2023
1 parent f53ce82 commit 8ec8d6c
Show file tree
Hide file tree
Showing 3 changed files with 3,727 additions and 3,716 deletions.
7 changes: 5 additions & 2 deletions next-docs/public/examples/table/LongData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,12 @@ const Example = () => {

const defaultColumn = React.useMemo(
() => ({
minWidth: 100,
minWidth: 10,
width: 150,
maxWidth: 400,

/* The next prop is commented to provide an opportunity
to expand any table column as much as possible */
/* maxWidth: 400, */
}),
[]
);
Expand Down
Loading

0 comments on commit 8ec8d6c

Please sign in to comment.