Skip to content

Commit

Permalink
frontend: fix send transaction confirmation spacing
Browse files Browse the repository at this point in the history
add space between coin amount and coin unit,
this was a regression added
on the react migration
  • Loading branch information
BrianCraig committed Jan 3, 2022
1 parent a87d986 commit ea6ba46
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontends/web/src/routes/account/send/send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,7 @@ class Send extends Component<Props, State> {
<p>
<span key="proposedAmount">
{(proposedAmount && proposedAmount.amount) || 'N/A'}
{' '}
<small>{(proposedAmount && proposedAmount.unit) || 'N/A'}</small>
</span>
{
Expand All @@ -787,6 +788,7 @@ class Send extends Component<Props, State> {
<p>
<span key="amount">
{(proposedFee && proposedFee.amount) || 'N/A'}
{' '}
<small>{(proposedFee && proposedFee.unit) || 'N/A'}</small>
</span>
{proposedFee && proposedFee.conversions && (
Expand Down Expand Up @@ -820,6 +822,7 @@ class Send extends Component<Props, State> {
<p>
<span>
<strong>{(proposedTotal && proposedTotal.amount) || 'N/A'}</strong>
{' '}
<small>{(proposedTotal && proposedTotal.unit) || 'N/A'}</small>
</span>
{(proposedTotal && proposedTotal.conversions) && (
Expand Down

0 comments on commit ea6ba46

Please sign in to comment.