Browse Source
Reversed icon shown for asc/desc account ordering
gre-patch-1
Juan Cortes Ross
6 years ago
No known key found for this signature in database
GPG Key ID: 34A99C03E9455EB8
1 changed files with
1 additions and
1 deletions
-
src/components/DashboardPage/AccountsOrder.js
|
|
@ -118,7 +118,7 @@ class AccountsOrder extends Component<Props> { |
|
|
|
<BoldToggle isBold={isActive}>{item.label}</BoldToggle> |
|
|
|
</Box> |
|
|
|
<OrderIcon isActive={isActive}> |
|
|
|
{order === 'desc' ? <IconArrowUp size={14} /> : <IconArrowDown size={14} />} |
|
|
|
{order === 'asc' ? <IconArrowUp size={14} /> : <IconArrowDown size={14} />} |
|
|
|
</OrderIcon> |
|
|
|
</DropDownItem> |
|
|
|
) |
|
|
|