Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 4b786a7

Browse files
committed
wild width
1 parent a6356a0 commit 4b786a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import PaginationTable from "components/navbar/PaginationTable";
4848

4949
const defaultColumn: Partial<ColumnDef<RowDataType>> = {
5050
minSize: DatabaseLimits.MIN_COLUMN_WIDTH,
51-
maxSize: DatabaseLimits.MAX_COLUMN_WIDTH,
51+
size: DatabaseLimits.DEFAULT_COLUMN_WIDTH,
5252
cell: DefaultCell,
5353
header: DefaultHeader,
5454
enableResizing: true,

src/helpers/Constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const DatabaseLimits = Object.freeze({
4040
MAX_ROWS: 99999,
4141
MAX_OPTIONS: 100,
4242
MIN_COLUMN_WIDTH: 30,
43-
MAX_COLUMN_WIDTH: 350,
43+
DEFAULT_COLUMN_WIDTH: 100,
4444
});
4545

4646
export const MetadataColumns = Object.freeze({

0 commit comments

Comments
 (0)