swap bond to stake and pledge to bond

This commit is contained in:
gala1234
2022-05-25 10:45:08 +02:00
parent ddd84295c4
commit e9280f2c17
2 changed files with 5 additions and 5 deletions
@@ -91,14 +91,14 @@ export const BondBreakdownTable: React.FC = () => {
}}
align="left"
>
Bond total
Stake total
</TableCell>
<TableCell align="left" data-testid="bond-total-amount">
{bonds.bondsTotal}
</TableCell>
</TableRow>
<TableRow>
<TableCell align="left">Self</TableCell>
<TableCell align="left">Bond Total</TableCell>
<TableCell align="left" data-testid="pledge-total-amount">
{bonds.pledges}
</TableCell>
@@ -187,7 +187,7 @@ export const BondBreakdownTable: React.FC = () => {
}}
align="left"
>
Share from bond
Share from stake
</TableCell>
</TableRow>
</TableHead>
+2 -2
View File
@@ -29,7 +29,7 @@ const columns: ColumnsType[] = [
{
field: 'bond',
title: 'Bond',
title: 'Stake',
flex: 1,
headerAlign: 'left',
},
@@ -95,7 +95,7 @@ const PageMixnodeDetailWithState: React.FC = () => {
<Grid container spacing={2} mt={0}>
<Grid item xs={12}>
<ContentCard title="Bond Breakdown">
<ContentCard title="Stake Breakdown">
<BondBreakdownTable />
</ContentCard>
</Grid>