mirror of
https://github.com/zadam/trilium.git
synced 2026-01-23 15:04:25 +01:00
feat(sql_console): reduce column width
This commit is contained in:
parent
7c18025098
commit
c6896a4b33
@ -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}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user