From 862adf3a4bde68e20885a16bf7c8ab241476429e Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Tue, 4 Oct 2016 21:47:17 -0700 Subject: Rename drop menu item to be consistent with naming. --- ui/app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/app/app.js') diff --git a/ui/app/app.js b/ui/app/app.js index d26af4e77..def683bba 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -301,7 +301,7 @@ App.prototype.renderDropdown = function () { }), h(DropMenuItem, { - label: 'Help', + label: 'Info', closeMenu: () => this.setState({ isMainMenuOpen: !isOpen }), action: () => this.props.dispatch(actions.showInfoPage()), icon: h('i.fa.fa-question.fa-lg'), -- cgit v1.2.3 From 0ecf364c5b2d8dc3b3cb8474b2124e50955bc602 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Fri, 7 Oct 2016 02:11:03 -0700 Subject: Prevent back/login buttons from appearing on the terms of service. --- ui/app/app.js | 1 + 1 file changed, 1 insertion(+) (limited to 'ui/app/app.js') diff --git a/ui/app/app.js b/ui/app/app.js index def683bba..71e0637d0 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -330,6 +330,7 @@ App.prototype.renderBackButton = function (style, justArrow = false) { App.prototype.renderBackToInitButton = function () { var props = this.props var button = null + if (!props.isConfirmed) return button if (!props.isUnlocked) { if (props.currentView.name === 'InitMenu') { button = props.forgottenPassword ? h('.flex-row', { -- cgit v1.2.3