Merge branch 'feature/transactions-infinite-loader' of github.com:andrerfneves/zcash-reference-wallet into feature/transactions-infinite-loader

This commit is contained in:
George Lima 2019-02-14 11:07:31 -03:00
commit c8386a7e4e
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ export class TransactionsView extends PureComponent<Props> {
renderRow = ({ index, key, style }: { index: number, key: string, style: Object }) => (
<div key={key} style={style}>
{!this.isRowLoaded({ index }) ? 'Loading...' : this.renderTransactions({ index })}
{this.isRowLoaded({ index }) ? this.renderTransactions({ index }) : 'Loading...'}
</div>
);