From c6896a4b33bef171baf076410f992efd38c41f89 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 17 Jan 2026 21:43:21 +0200 Subject: [PATCH] feat(sql_console): reduce column width --- apps/client/src/widgets/type_widgets/SqlConsole.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/client/src/widgets/type_widgets/SqlConsole.tsx b/apps/client/src/widgets/type_widgets/SqlConsole.tsx index 0c6651d80..c66473fb5 100644 --- a/apps/client/src/widgets/type_widgets/SqlConsole.tsx +++ b/apps/client/src/widgets/type_widgets/SqlConsole.tsx @@ -63,7 +63,10 @@ function SqlResultTable({ rows }: { rows: object[] }) { columns={[ ...Object.keys(rows[0]).map(key => ({ title: key, - field: key + field: key, + minWidth: 100, + maxWidth: 400, + widthGrow: 1 })) ]} data={rows}