diff --git a/src/components/Executions/Tables/WorkflowExecutionsTable.tsx b/src/components/Executions/Tables/WorkflowExecutionsTable.tsx index ab45b37d8..7b50a3e59 100644 --- a/src/components/Executions/Tables/WorkflowExecutionsTable.tsx +++ b/src/components/Executions/Tables/WorkflowExecutionsTable.tsx @@ -263,7 +263,10 @@ export const WorkflowExecutionsTable: React.FC = p const execution = executions[rowProps.index]; const cacheKey = getCacheKey(execution.id); const onExpandCollapseError = (expanded: boolean) => { - setExpandedErrors(currentExpandedErrors => ({ ...currentExpandedErrors, [cacheKey]: expanded })); + setExpandedErrors(currentExpandedErrors => ({ + ...currentExpandedErrors, + [cacheKey]: expanded + })); recomputeRow(rowProps.index); }; return (