Skip to content

Commit

Permalink
v1.7.3-hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
linkielink committed Nov 20, 2023
1 parent a44e4c8 commit 2e2d14e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/redbank/AssetTable/AssetTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ export const AssetTable = ({ data, columns, type, disabled = false }: Props) =>
if (row.depth === 1) {
return (
<React.Fragment key={`${row.id}_subrow`}>
<ActionsRow key={`${row.id}_actions`} row={table.getRow(row.id[0])} type={type} />
<MetricsRow key={`${row.id}_metrics`} row={table.getRow(row.id[0])} type={type} />
<ActionsRow key={`${row.original.id}_actions`} row={row} type={type} />
<MetricsRow key={`${row.original.id}_metrics`} row={row} type={type} />
</React.Fragment>
)
}
Expand Down

0 comments on commit 2e2d14e

Please sign in to comment.