1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00

Fix order of button text in page-container-footer.

This commit is contained in:
Dan 2018-05-24 18:25:23 -02:30
parent 5bb399e55a
commit 3a87d9221d
2 changed files with 4 additions and 10 deletions

View File

@ -34,7 +34,7 @@ export default class PageContainerFooter extends Component {
className="page-container__footer-button"
onClick={() => onCancel()}
>
{ this.context.t('cancel') || cancelText }
{ cancelText || this.context.t('cancel') }
</Button>
<Button
@ -44,7 +44,7 @@ export default class PageContainerFooter extends Component {
disabled={disabled}
onClick={e => onSubmit(e)}
>
{ this.context.t('next') || submitText }
{ submitText || this.context.t('next') }
</Button>
</div>

View File

@ -26,7 +26,6 @@ import {
addressIsNew,
constructTxParams,
constructUpdatedTx,
formShouldBeDisabled,
} from './send-footer.utils'
export default connect(mapStateToProps, mapDispatchToProps)(SendFooter)
@ -34,21 +33,16 @@ export default connect(mapStateToProps, mapDispatchToProps)(SendFooter)
function mapStateToProps (state) {
return {
amount: getSendAmount(state),
disabled: formShouldBeDisabled({
inError: isSendFormInError(state),
selectedToken: getSelectedToken(state),
tokenBalance: getTokenBalance(state),
gasTotal: getGasTotal(state),
}),
editingTransactionId: getSendEditingTransactionId(state),
from: getSendFromObject(state),
gasLimit: getGasLimit(state),
gasPrice: getGasPrice(state),
gasTotal: getGasTotal(state),
inError: isSendFormInError(state),
isToken: Boolean(getSelectedToken(state)),
selectedToken: getSelectedToken(state),
to: getSendTo(state),
toAccounts: getSendToAccounts(state),
tokenBalance: getTokenBalance(state),
unapprovedTxs: getUnapprovedTxs(state),
}
}