File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
apps/backend/src/system/reports Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export class ReportsService {
24
24
] ,
25
25
} ) ;
26
26
27
- const columnKeys = new Set ( [ ' participant' ] )
27
+ const columnKeys = new Set ( [ " participant" ] ) ;
28
28
29
29
const evaluatedExposurePerParticipant = participants . map ( ( participant ) => {
30
30
const exposure = this . getParticipantExposure ( participant ) ;
@@ -36,7 +36,10 @@ export class ReportsService {
36
36
acc [ `L${ index + 1 } ` ] = duration / exposureSum ;
37
37
acc [ `L${ index + 1 } _id` ] = language . id ;
38
38
acc [ `L${ index + 1 } _name` ] = language . name ;
39
- columnKeys . add ( `L${ index + 1 } ` ) . add ( `L${ index + 1 } _id` ) . add ( `L${ index + 1 } _name` )
39
+ columnKeys
40
+ . add ( `L${ index + 1 } ` )
41
+ . add ( `L${ index + 1 } _id` )
42
+ . add ( `L${ index + 1 } _name` ) ;
40
43
41
44
return acc ;
42
45
} ,
You can’t perform that action at this time.
0 commit comments