Skip to content

Commit 946e3cb

Browse files
committed
Adds handling for Active status in TransformerV2
Implements support for the Active status case in the TransformerV2 function. This enhancement allows the system to correctly return the EventStatus.Active when dealing with active statuses, improving overall event handling.
1 parent c844025 commit 946e3cb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/Services/Status.Trans.V2.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ export function TransformerV2({ Components, Events }: { Components: StatusEntity
193193
case StatusEnum.Scheduled:
194194
case StatusEnum.Planned:
195195
return EventStatus.Planned;
196+
case StatusEnum.Active:
197+
return EventStatus.Active;
196198
case StatusEnum.Modified:
197199
return EventStatus.Modified;
198200
case StatusEnum.InProgress:

0 commit comments

Comments
 (0)