Updated Account component actionTitle

• Updated:
- Account component actionTitle
This commit is contained in:
mgabdev 2020-08-07 17:27:07 -05:00
parent 8f29443f81
commit b5bc171a2f
1 changed files with 6 additions and 3 deletions

View File

@ -140,9 +140,12 @@ class Account extends ImmutablePureComponent {
icon={actionIcon}
iconSize='10px'
>
<Text color='inherit' className={_s.ml5}>
{actionTitle}
</Text>
{
!!actionTitle &&
<Text color='inherit' className={_s.ml5}>
{actionTitle}
</Text>
}
</Button>
) : <AccountActionButton account={account} isSmall />