From 033e1232ae5f6e32262d343726132b0d206f9b40 Mon Sep 17 00:00:00 2001 From: Gabriel Rubens Date: Wed, 13 Feb 2019 13:21:25 -0300 Subject: [PATCH] chore(transactions): affirmative ternary Co-Authored-By: georgelima --- app/views/transactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/transactions.js b/app/views/transactions.js index fb24948..7d78881 100644 --- a/app/views/transactions.js +++ b/app/views/transactions.js @@ -124,7 +124,7 @@ export class TransactionsView extends PureComponent { renderRow = ({ index, key, style }: { index: number, key: string, style: Object }) => (
- {!this.isRowLoaded({ index }) ? 'Loading...' : this.renderTransactions({ index })} + {this.isRowLoaded({ index }) ? this.renderTransactions({ index }) : 'Loading...'}
);