mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix order of button text in page-container-footer.
This commit is contained in:
parent
5bb399e55a
commit
3a87d9221d
@ -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>
|
||||
|
@ -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),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user