We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eb28c4 commit 4f6f476Copy full SHA for 4f6f476
1 file changed
src/Components/Event/Enums.ts
@@ -65,6 +65,7 @@ export enum EventStatus {
65
Completed = "Completed",
66
67
Reopened = "Reopened",
68
+ Changed = "Changed",
69
}
70
71
/**
@@ -99,5 +100,7 @@ export function GetStatusString(status: EventStatus): string {
99
100
return StatusEnum.Completed;
101
case EventStatus.Reopened:
102
return StatusEnum.Reopened;
103
+ case EventStatus.Changed:
104
+ return StatusEnum.Changed;
105
106
0 commit comments