From def369ba079fb3596c126fe9b622eda46afa54f6 Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 27 Feb 2018 13:43:22 -0330 Subject: Move beta warning to app header. --- ui/app/app.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ui') diff --git a/ui/app/app.js b/ui/app/app.js index 58e38a077..7490c63b1 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -239,6 +239,9 @@ App.prototype.renderAppBar = function () { showNetworkDropdown, hideNetworkDropdown, currentView, + isInitialized, + betaUI, + isPopup, } = this.props if (window.METAMASK_UI_TYPE === 'notification') { @@ -317,6 +320,9 @@ App.prototype.renderAppBar = function () { ]), ]), + !isInitialized && !isPopup && betaUI && h('h2.alpha-warning', + 'Please be aware that this version is still under development'), + ]) ) } -- cgit