Skip to content

Commit

Permalink
Merge pull request #51 from mars-protocol/v1.7.3-hotfix
Browse files Browse the repository at this point in the history
v1.7.3-hotfix
  • Loading branch information
linkielink authored Nov 20, 2023
2 parents a44e4c8 + 2e2d14e commit 2a24ac5
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 2a24ac5

Please sign in to comment.