Skip to content

Commit 04f048a

Browse files
author
Marius Conjeaud
committed
Remove redundant ternary operator
1 parent 7e10e22 commit 04f048a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/report/ReportRecordProcessing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ export const rendererForType: any = {
387387
},
388388
array: {
389389
type: 'string',
390-
renderValue: (c) => RenderArray(c.value, c.transposedTable ? c.transposedTable : false),
390+
renderValue: (c) => RenderArray(c.value, c.transposedTable),
391391
},
392392
string: {
393393
type: 'string',

0 commit comments

Comments
 (0)