feat(sql_console): reduce column width

This commit is contained in:
Elian Doran 2026-01-17 21:43:21 +02:00
parent 7c18025098
commit c6896a4b33
No known key found for this signature in database

View File

@ -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}