perf(data-table): optimize action column width allocation (#6135)

- apply a minimum width hint to content-sized columns to prevent wasted space.
- preserve remaining table width allocation across regular data columns.
This commit is contained in:
QuentinHsu
2026-07-20 18:04:05 +08:00
committed by GitHub
parent 2ef4cfff9c
commit 270accc322
@@ -54,7 +54,7 @@ function getColumnWidth<TData>(
totalSize: number
) {
if (isContentSizedColumn(columnId)) {
return undefined
return '1%'
}
if (table.options.enableColumnResizing === true) {