diff options
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/first-time/init-menu.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ui/app/first-time/init-menu.js b/ui/app/first-time/init-menu.js index 21ddc2800..bd6541dd4 100644 --- a/ui/app/first-time/init-menu.js +++ b/ui/app/first-time/init-menu.js @@ -20,6 +20,7 @@ function mapStateToProps (state) { return { // state from plugin currentView: state.appState.currentView, + warning: state.appState.warning, } } @@ -29,7 +30,7 @@ InitializeMenuScreen.prototype.render = function () { switch (state.currentView.name) { default: - return this.renderMenu() + return this.renderMenu(state) } } @@ -38,7 +39,7 @@ InitializeMenuScreen.prototype.render = function () { // document.getElementById('password-box').focus() // } -InitializeMenuScreen.prototype.renderMenu = function () { +InitializeMenuScreen.prototype.renderMenu = function (state) { return ( h('.initialize-screen.flex-column.flex-center.flex-grow', [ @@ -116,6 +117,10 @@ InitializeMenuScreen.prototype.renderMenu = function () { }, }, 'Create'), + (!state.inProgress && state.warning) && ( + h('span.in-progress-notification', state.warning) + ), + /* h('.flex-row.flex-center.flex-grow', [ h('p.pointer', { |