aboutsummaryrefslogtreecommitdiffstats
path: root/ui/classic
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-07-14 15:53:54 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-07-18 20:31:39 +0800
commit433fb4d24201d30eb84350bb1bd649f5bb22ad92 (patch)
treef514702cc6324db514256736b14ed6eb5e20ec09 /ui/classic
parentd01b5c927d9ae874cc8a7d68fbd1f8649dbba291 (diff)
downloadtangerine-wallet-browser-433fb4d24201d30eb84350bb1bd649f5bb22ad92.tar.gz
tangerine-wallet-browser-433fb4d24201d30eb84350bb1bd649f5bb22ad92.tar.zst
tangerine-wallet-browser-433fb4d24201d30eb84350bb1bd649f5bb22ad92.zip
Cleanup
Fix lint error breaking gulp build Add presentational options menus
Diffstat (limited to 'ui/classic')
-rw-r--r--ui/classic/app/components/editable-label.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/classic/app/components/editable-label.js b/ui/classic/app/components/editable-label.js
index 41936f5e0..48ba5060e 100644
--- a/ui/classic/app/components/editable-label.js
+++ b/ui/classic/app/components/editable-label.js
@@ -13,6 +13,7 @@ function EditableLabel () {
EditableLabel.prototype.render = function () {
const props = this.props
const state = this.state
+ console.log("editing:", state.isEditingLabel);
if (state && state.isEditingLabel) {
return h('div.editable-label', [
@@ -30,6 +31,8 @@ EditableLabel.prototype.render = function () {
} else {
return h('div.name-label', {
onClick: (event) => {
+ debugger;
+ console.log("event", event.target);
this.setState({ isEditingLabel: true })
},
}, this.props.children)