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