From 7f19054f70d17a00466a307ad7b2cb6301b3e1cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20D=C3=BChring?= Date: Wed, 13 May 2026 15:22:28 +0200 Subject: [PATCH] fix typo for cancelled wf processes --- src/utils/bulkActionUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/bulkActionUtils.ts b/src/utils/bulkActionUtils.ts index 40f0cda748..3b8b5d8284 100644 --- a/src/utils/bulkActionUtils.ts +++ b/src/utils/bulkActionUtils.ts @@ -117,7 +117,7 @@ export const isStartable = (event: Event) => { return ( event.event_status.toUpperCase().indexOf("PROCESSED") > -1 || event.event_status.toUpperCase().indexOf("PROCESSING_FAILURE") > -1 || - event.event_status.toUpperCase().indexOf("PROCESSING_CANCELED") > -1 || + event.event_status.toUpperCase().indexOf("PROCESSING_CANCELLED") > -1 || !event.selected ); };