aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/keychains
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-10-06 04:43:27 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-10-06 04:43:29 +0800
commit7dd1254424180e58c07a2dcbd2449415ea2bdb40 (patch)
tree853be4affed577cab27c5c90ac6fb6cb6b025a79 /ui/app/components/pages/keychains
parentc8521e49adc253cf3c18812dc062c67075b42fc5 (diff)
downloadtangerine-wallet-browser-7dd1254424180e58c07a2dcbd2449415ea2bdb40.tar.gz
tangerine-wallet-browser-7dd1254424180e58c07a2dcbd2449415ea2bdb40.tar.zst
tangerine-wallet-browser-7dd1254424180e58c07a2dcbd2449415ea2bdb40.zip
Fix markup for inline instances of `PageContainer`s
Diffstat (limited to 'ui/app/components/pages/keychains')
-rw-r--r--ui/app/components/pages/keychains/reveal-seed.js28
1 files changed, 15 insertions, 13 deletions
diff --git a/ui/app/components/pages/keychains/reveal-seed.js b/ui/app/components/pages/keychains/reveal-seed.js
index 7782b541c..32557066f 100644
--- a/ui/app/components/pages/keychains/reveal-seed.js
+++ b/ui/app/components/pages/keychains/reveal-seed.js
@@ -108,19 +108,21 @@ class RevealSeedPage extends Component {
renderPasswordPromptFooter () {
return (
h('.page-container__footer', [
- h(Button, {
- type: 'default',
- large: true,
- className: 'page-container__footer-button',
- onClick: () => this.props.history.push(DEFAULT_ROUTE),
- }, this.context.t('cancel')),
- h(Button, {
- type: 'primary',
- large: true,
- className: 'page-container__footer-button',
- onClick: event => this.handleSubmit(event),
- disabled: this.state.password === '',
- }, this.context.t('next')),
+ h('header', [
+ h(Button, {
+ type: 'default',
+ large: true,
+ className: 'page-container__footer-button',
+ onClick: () => this.props.history.push(DEFAULT_ROUTE),
+ }, this.context.t('cancel')),
+ h(Button, {
+ type: 'primary',
+ large: true,
+ className: 'page-container__footer-button',
+ onClick: event => this.handleSubmit(event),
+ disabled: this.state.password === '',
+ }, this.context.t('next')),
+ ]),
])
)
}