From 8a079e548b5d0dcb490de285b0f8eef20e371c43 Mon Sep 17 00:00:00 2001 From: Manoj Vivek Date: Sun, 11 Aug 2019 13:25:58 +0530 Subject: [PATCH] Improvement address bar interaction and changes app name --- .../app/components/Addressinput/index.js | 21 ++- desktop-app/app/components/Renderer/index.js | 4 +- desktop-app/app/menu.js | 126 +++++++++--------- desktop-app/package.json | 55 ++------ 4 files changed, 95 insertions(+), 111 deletions(-) diff --git a/desktop-app/app/components/Addressinput/index.js b/desktop-app/app/components/Addressinput/index.js index 5f308143..4c761c18 100644 --- a/desktop-app/app/components/Addressinput/index.js +++ b/desktop-app/app/components/Addressinput/index.js @@ -33,6 +33,7 @@ class AddressBar extends React.Component { className={styles.addressInput} placeholder="https://your-website.com" value={this.state.userTypedAddress || this.props.address} + onKeyDown={this._handleKeyDown} onChange={e => this.setState({userTypedAddress: e.target.value})} />