Skip to content

Commit

Permalink
fix(neuron-ui): hide the pending list if it has no items.
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Oct 29, 2019
1 parent dfd9c5d commit 19d857e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ const TransactionList = ({
enableShimmer={isLoading}
columns={transactionColumns}
items={txs}
groups={groups}
groups={groups.filter(group => group.count !== 0)}
groupProps={{
collapseAllVisibility: CollapseAllVisibility.hidden,
onRenderHeader: GroupHeader,
Expand Down

0 comments on commit 19d857e

Please sign in to comment.