fix(cockpit/transactions): fix a typo in the transactions page

This commit is contained in:
Jonathan Rainville 2019-03-11 12:30:44 -04:00 committed by Iuri Matias
parent 74847ee323
commit cba7c85242
1 changed files with 2 additions and 2 deletions

View File

@ -60,9 +60,9 @@ class TransactionsContainer extends Component {
}
return (
<React.Fragment>
<PageHead title="Transactions" enabled={this.props.overridePageHead} description="Summary view of all transactions occuring on the node configured for Embark" />
<PageHead title="Transactions" enabled={this.props.overridePageHead} description="Summary view of all transactions occurring on the node configured for Embark" />
<DataWrapper shouldRender={this.currentTxs.length > 0} {...this.props} render={() => (
<Transactions transactions={this.currentTxs}
<Transactions transactions={this.currentTxs}
contracts={this.props.contracts}
numberOfPages={this.getNumberOfPages()}
changePage={(newPage) => this.changePage(newPage)}