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, minWidth: column.minWidth,
maxWidth: column.maxWidth, maxWidth: column.maxWidth,
width: `${ width: `${
(column.flexGrow / totalFlexGrow) * 100 (column.flexGrow / columns.reduce((sum, col) => sum + (col.flexGrow || 0), 0)) * 100
}%`, }%`,
cursor: cursor:
column.id === "startedAt" || column.id === "startedAt" ||