From c435c8573bd1c831a0e4511b8387f66a06813767 Mon Sep 17 00:00:00 2001 From: Adhitya Mamallan Date: Tue, 2 Sep 2025 11:25:00 +0200 Subject: [PATCH] Hide invalid cron overlap policy --- .../config/workflow-history-event-details.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/workflow-history/config/workflow-history-event-details.config.ts b/src/views/workflow-history/config/workflow-history-event-details.config.ts index ff026996e..e66a14a17 100644 --- a/src/views/workflow-history/config/workflow-history-event-details.config.ts +++ b/src/views/workflow-history/config/workflow-history-event-details.config.ts @@ -20,6 +20,11 @@ const workflowHistoryEventDetailsConfig = [ pathRegex: '(taskId|eventType)$', hide: () => true, }, + { + name: 'Filter invalid/unset CronOverlapPolicy', + path: 'cronOverlapPolicy', + hide: ({ value }) => !value || value === 'CRON_OVERLAP_POLICY_INVALID', + }, { name: 'Not set placeholder', customMatcher: ({ value, path }) => {