From a1111f9eaf79e3660330e02e68349ca340d130f8 Mon Sep 17 00:00:00 2001 From: Randy Schott <1815175+schottra@users.noreply.github.com> Date: Mon, 6 Jul 2020 15:28:26 -0700 Subject: [PATCH] chore: fix lint error --- src/components/Executions/Tables/WorkflowExecutionsTable.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 (