Skip to content

Commit 6be903d

Browse files
authored
fix(Schema): increase default columns width (#1765)
1 parent 5db78c9 commit 6be903d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/containers/Tenant/Schema/SchemaViewer/columns.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const nameColumn: SchemaColumn = {
3131
get header() {
3232
return i18n('column-title.name');
3333
},
34-
width: 100,
34+
width: 120,
3535
render: ({row}) => row.name,
3636
};
3737
const typeColumn: SchemaColumn = {
@@ -104,7 +104,7 @@ const compressionColumn: SchemaColumn = {
104104
get header() {
105105
return i18n('column-title.compression');
106106
},
107-
width: 100,
107+
width: 130,
108108
render: ({row}) => row.columnCodec,
109109
};
110110

0 commit comments

Comments
 (0)