From df01273b94d7df9c1ad83556c25c42c2dd3e23bf Mon Sep 17 00:00:00 2001 From: zuiho <31877877+zuiho-kai@users.noreply.github.com> Date: Thu, 9 Jul 2026 16:26:56 +0800 Subject: [PATCH] fix(web): let resized tables fill available width (#6031) Signed-off-by: zuiho <2324465096@qq.com> --- web/default/src/components/data-table/core/table-sizing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/default/src/components/data-table/core/table-sizing.ts b/web/default/src/components/data-table/core/table-sizing.ts index bfb5c2fa..435aacfe 100644 --- a/web/default/src/components/data-table/core/table-sizing.ts +++ b/web/default/src/components/data-table/core/table-sizing.ts @@ -32,6 +32,6 @@ export function getTableSizeStyle( return { minWidth: `max(100%, ${width}px)`, tableLayout: 'auto', - width: 'max-content', + width: '100%', } }