Skip to content

Commit

Permalink
Separate addtl categories with a comma
Browse files Browse the repository at this point in the history
  • Loading branch information
adriantoddross committed Apr 27, 2021
1 parent 2b6365b commit a63b5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/OrgList/OrgTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function OrgTable(props: any) {
</TableCell>
<TableCell>
<Typography className={classes.tableCellText}>
{org.category}
{org.category && org.category.join(', ')}
</Typography>
</TableCell>
</TableRow>
Expand Down

0 comments on commit a63b5cb

Please sign in to comment.