aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/export-private-key-modal.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-06-02 07:03:56 +0800
committerGitHub <noreply@github.com>2018-06-02 07:03:56 +0800
commit4be8e780cd64014d07c036c29faa77f947437c4a (patch)
tree37c76b1bbad225adc70f45a8fd17e8718e2b6453 /ui/app/components/modals/export-private-key-modal.js
parentdc5477be3cc62dff912a9447c702edab66200f02 (diff)
parentb1b90a6bb979cbda8b865e680dba621201d9f801 (diff)
downloadtangerine-wallet-browser-4be8e780cd64014d07c036c29faa77f947437c4a.tar.gz
tangerine-wallet-browser-4be8e780cd64014d07c036c29faa77f947437c4a.tar.zst
tangerine-wallet-browser-4be8e780cd64014d07c036c29faa77f947437c4a.zip
Merge pull request #4449 from MetaMask/Version-4.7.1
Version 4.7.1
Diffstat (limited to 'ui/app/components/modals/export-private-key-modal.js')
-rw-r--r--ui/app/components/modals/export-private-key-modal.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/modals/export-private-key-modal.js b/ui/app/components/modals/export-private-key-modal.js
index 447e43b7a..80ece425f 100644
--- a/ui/app/components/modals/export-private-key-modal.js
+++ b/ui/app/components/modals/export-private-key-modal.js
@@ -87,14 +87,14 @@ ExportPrivateKeyModal.prototype.renderButton = function (className, onClick, lab
ExportPrivateKeyModal.prototype.renderButtons = function (privateKey, password, address, hideModal) {
return h('div.export-private-key-buttons', {}, [
!privateKey && this.renderButton(
- 'btn-secondary--lg export-private-key__button export-private-key__button--cancel',
+ 'btn-default btn--large export-private-key__button export-private-key__button--cancel',
() => hideModal(),
'Cancel'
),
(privateKey
- ? this.renderButton('btn-primary--lg export-private-key__button', () => hideModal(), this.context.t('done'))
- : this.renderButton('btn-primary--lg export-private-key__button', () => this.exportAccountAndGetPrivateKey(this.state.password, address), this.context.t('confirm'))
+ ? this.renderButton('btn-primary btn--large export-private-key__button', () => hideModal(), this.context.t('done'))
+ : this.renderButton('btn-primary btn--large export-private-key__button', () => this.exportAccountAndGetPrivateKey(this.state.password, address), this.context.t('confirm'))
),
])