File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,13 +89,13 @@ const UdfDocsTemplate = ((props: any) => {
8989 </ TableRow >
9090 </ TableHead >
9191 < TableBody >
92- { functions [ 0 ] . definition . inputs ? functions [ 0 ] . definition . inputs . map ( ( i , index ) => (
92+ { functions [ 0 ] . definition . inputs ? functions [ 0 ] . definition . inputs . map ( ( arg , index ) => (
9393 < TableRow >
94- < TableCell align = 'left' > { i . ident } </ TableCell >
94+ < TableCell align = 'left' > { arg . ident } </ TableCell >
9595 < TableCell align = 'left' >
96- { [ ...new Set ( functions . map ( ( f ) => f . definition ) . map ( ( d ) => d . inputs [ index ] . type ) ) ] . join ( ' / ' ) }
96+ { [ ...new Set ( functions . filter ( ( f ) => ! ! f . definition . inputs [ index ] ) . map ( ( f ) => f . definition . inputs [ index ] . type ) ) ] . join ( ' / ' ) }
9797 </ TableCell >
98- < TableCell align = 'left' > { i . desc } </ TableCell >
98+ < TableCell align = 'left' > { arg . desc } </ TableCell >
9999 </ TableRow >
100100 ) ) : '' }
101101
You can’t perform that action at this time.
0 commit comments