File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/components/engagement/dto Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,15 @@ export const EngagementStatus = makeEnum({
11
11
{ value : 'Rejected' , terminal : true } ,
12
12
13
13
'Active' ,
14
+ 'ActiveChangedPlan' ,
14
15
15
16
'DiscussingTermination' ,
16
17
'DiscussingReactivation' ,
17
18
'DiscussingChangeToPlan' ,
18
19
'DiscussingSuspension' ,
19
-
20
- 'FinalizingCompletion' ,
21
- 'ActiveChangedPlan' ,
22
20
'Suspended' ,
23
21
22
+ 'FinalizingCompletion' ,
24
23
{ value : 'Terminated' , terminal : true } ,
25
24
{ value : 'Completed' , terminal : true } ,
26
25
@@ -32,6 +31,7 @@ export const EngagementStatus = makeEnum({
32
31
} ) ,
33
32
) ,
34
33
] ,
34
+ exposeOrder : true ,
35
35
extra : ( { entries } ) => ( {
36
36
Terminal : setOf ( entries . flatMap ( ( v ) => ( v . terminal ? [ v . value ] : [ ] ) ) ) ,
37
37
Ongoing : setOf ( entries . flatMap ( ( v ) => ( ! v . terminal ? [ v . value ] : [ ] ) ) ) ,
You can’t perform that action at this time.
0 commit comments