chore(transactions): affirmative ternary

Co-Authored-By: georgelima <georgelima11@hotmail.com>
This commit is contained in:
Gabriel Rubens 2019-02-13 13:21:25 -03:00 committed by GitHub
parent 9886b22a4a
commit 033e1232ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>
);