Skip to content

Commit 9a9ed3c

Browse files
add changes
Signed-off-by: Adhitya Mamallan <[email protected]>
1 parent 54bb041 commit 9a9ed3c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/views/workflow-history-v2/workflow-history-event-group/__tests__/workflow-history-event-group.test.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ function setup({
582582
render(
583583
<WorkflowHistoryEventGroup
584584
eventGroup={eventGroup}
585+
groupId={eventGroup.firstEventId ?? ''}
585586
selected={selected}
586587
workflowCloseTimeMs={workflowCloseTimeMs}
587588
workflowCloseStatus={workflowCloseStatus}

src/views/workflow-history-v2/workflow-history-grouped-table/workflow-history-grouped-table.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ export default function WorkflowHistoryGroupedTable({
5151
behavior: 'auto',
5252
},
5353
})}
54-
itemContent={(_, [__, group]) => (
54+
itemContent={(_, [groupId, group]) => (
5555
<WorkflowHistoryEventGroup
5656
eventGroup={group}
57+
groupId={groupId}
5758
getIsEventExpanded={getIsEventExpanded}
5859
toggleIsEventExpanded={toggleIsEventExpanded}
5960
showLoadingMoreEvents={

0 commit comments

Comments
 (0)