fix: correct flex calculation in RunsTable component

This commit is contained in:
Anurag Singh
2025-03-25 09:23:22 +05:00
parent a7ffe5a353
commit adb6f57e4f

View File

@@ -524,7 +524,7 @@ export const RunsTable: React.FC<RunsTableProps> = ({
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" ||