diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-03-05 00:29:27 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-03-05 00:29:32 +0100 |
commit | db5bc3dacbce645a3f9df48e660c3520fd14a936 (patch) | |
tree | 8bd1ede35acd9959728f1de1cfefda7073eb6315 | |
parent | 33d28e4d4029e8e48d9a31c5894d0d5d3d3c87f7 (diff) |
[bug] disable addressbok
- Related: #8792
-rw-r--r-- | ui/app/components/main_panel/email_section.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/main_panel/email_section.js b/ui/app/components/main_panel/email_section.js index 8947e38..ddb2a09 100644 --- a/ui/app/components/main_panel/email_section.js +++ b/ui/app/components/main_panel/email_section.js @@ -123,7 +123,8 @@ export default class EmailSection extends React.Component { let body = null let header = <h1>Mail</h1> if (this.state.status == 'on') { - button = <Button onClick={this.openKeys}>Addressbook</Button> + // FIXME disabling until #8792 is fixed + // button = <Button onClick={this.openKeys}>Addressbook</Button> } if (this.state.status == 'disabled') { header = <h1>Mail Disabled</h1> |