From adb6f57e4fbdc109938a973e47ecd0607175b0d0 Mon Sep 17 00:00:00 2001 From: Anurag Singh Date: Tue, 25 Mar 2025 09:23:22 +0500 Subject: [PATCH] fix: correct flex calculation in RunsTable component --- src/components/run/RunsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/run/RunsTable.tsx b/src/components/run/RunsTable.tsx index cd23fbf8..a32fd70e 100644 --- a/src/components/run/RunsTable.tsx +++ b/src/components/run/RunsTable.tsx @@ -524,7 +524,7 @@ export const RunsTable: React.FC = ({ minWidth: column.minWidth, maxWidth: column.maxWidth, width: `${ - (column.flexGrow / totalFlexGrow) * 100 + (column.flexGrow / columns.reduce((sum, col) => sum + (col.flexGrow || 0), 0)) * 100 }%`, cursor: column.id === "startedAt" ||