Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Use again 'outButton' class for outgoing transaction amount
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Oct 2, 2017
1 parent 1cf5644 commit 4ce226a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/transactions/amount.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Amount = (props) => {
params.className = 'inButton';
} else if (props.value.type !== transactionTypes.send ||
props.value.recipientId !== props.address) {
params.className = 'grayButton';
params.className = 'outButton';
params.tooltipText = props.value.type === transactionTypes.send ? props.t('Repeat the transaction') : undefined;
params.clickToSendEnabled = props.value.type === transactionTypes.send;
}
Expand Down

0 comments on commit 4ce226a

Please sign in to comment.