Skip to content

Commit 34f79d9

Browse files
Hide retries from summary in v1
Signed-off-by: Adhitya Mamallan <[email protected]>
1 parent eb7aab4 commit 34f79d9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/views/workflow-history/config/workflow-history-event-summary-field-parsers.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@ const workflowHistoryEventSummaryFieldParsersConfig: Array<WorkflowHistoryEventS
3232
icon: MdHourglassBottom,
3333
},
3434
{
35-
name: 'Retries with retry icon',
35+
name: 'Hide retryAttempt from summary in History V1',
3636
matcher: (name) => name === 'attempt',
37-
shouldHide: (_, value) => typeof value === 'number' && value <= 0,
38-
icon: MdReplay,
39-
tooltipLabel: 'retries',
37+
shouldHide: () => true,
38+
icon: null,
4039
},
4140
];
4241

0 commit comments

Comments
 (0)