diff options
Add edit label
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index 2f412c5be..d4ed88013 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -100,7 +100,8 @@ AccountDetailScreen.prototype.render = function() { }, [ // What is shown when not editing: - h('h2.font-medium.color-forest', identity && identity.name) + h('label.editing-label',[h('.edit-text','edit')]), + h('h2.font-medium.color-forest', {title: 'edit'}, identity && identity.name) ]), ]), |