diff options
-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> |