Browse Source
Merge pull request #1723 from juan-cortes/LL-768
Reversed icon shown for asc/desc account ordering
gre-patch-1
Gaëtan Renaudeau
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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> |
|
|
<BoldToggle isBold={isActive}>{item.label}</BoldToggle> |
|
|
</Box> |
|
|
</Box> |
|
|
<OrderIcon isActive={isActive}> |
|
|
<OrderIcon isActive={isActive}> |
|
|
{order === 'desc' ? <IconArrowUp size={14} /> : <IconArrowDown size={14} />} |
|
|
{order === 'asc' ? <IconArrowUp size={14} /> : <IconArrowDown size={14} />} |
|
|
</OrderIcon> |
|
|
</OrderIcon> |
|
|
</DropDownItem> |
|
|
</DropDownItem> |
|
|
) |
|
|
) |
|
|