Skip to content

Commit

Permalink
Update CollapsibleTable.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hams7504 authored Nov 2, 2023
1 parent 399b71b commit 1c7f174
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/CollapsibleTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,15 @@ const CollapsibleRow = (props) => {
</StyledTableCell>
{row.data.map((cell, i) => (
cell.truncate ?
(<TruncatedTableCell key={i}>
{cell.value}
</TruncatedTableCell>
(
<TruncatedTableCell key={i}>
{cell.value}
</TruncatedTableCell>
) : (
<StyledTableCell key={i}>
{cell.value}
</StyledTableCell>)
</StyledTableCell>
)
))}
</TableRow>
{/* subtable */}
Expand Down

0 comments on commit 1c7f174

Please sign in to comment.