fix(web): let resized tables fill available width (#6031)

Signed-off-by: zuiho <2324465096@qq.com>
This commit is contained in:
zuiho
2026-07-09 16:26:56 +08:00
committed by GitHub
parent 8739c05c0e
commit df01273b94
+1 -1
View File
@@ -32,6 +32,6 @@ export function getTableSizeStyle<TData>(
return {
minWidth: `max(100%, ${width}px)`,
tableLayout: 'auto',
width: 'max-content',
width: '100%',
}
}