-
Notifications
You must be signed in to change notification settings - Fork 60
Migrate browsing delegates on Voting tab to React - Closes #350 #512
Migrate browsing delegates on Voting tab to React - Closes #350 #512
Conversation
<TableCell numeric>Vote</TableCell> | ||
<TableCell numeric>Rank</TableCell> | ||
<TableCell numeric>Name</TableCell> | ||
<TableCell numeric>Uptime</TableCell> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This column should be 'Lisk Address'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is fixed
return ( | ||
<div className="box"> | ||
<VotingHeader search={ value => this.search(value) }></VotingHeader> | ||
<Table className={styles.table} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The table should spread the whole width of the containing card. Especially selected rows look bad. The same thing was solved In Forged Blocks: https://github.com/LiskHQ/lisk-nano/blob/development/src/components/forging/forgedBlocks.js#L16
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is fixed
<TableCell>{item.productivity} %</TableCell> | ||
<TableCell>{item.approval} %</TableCell> | ||
</TableRow> | ||
))} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should be a No delegates found
message here if the search result is empty.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is fixed
Closes #350