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" ||