Rc fixes #2085

Merged
neb-b merged 11 commits from rc-fixes into master 2018-11-02 19:33:01 +01:00
Showing only changes of commit c4adce2524 - Show all commits

View file

@ -48,6 +48,11 @@ class TransactionList extends React.PureComponent<Props> {
}
filterTransaction(transaction: Transaction) {
// The shorter "recent transactions" list shouldn't be filtered
if (this.props.slim) {
return transaction;
}
return (
this.props.filterSetting === TRANSACTIONS.ALL || this.props.filterSetting === transaction.type
);