diff options
Diffstat (limited to 'app/components')
| -rw-r--r-- | app/components/Tray.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/Tray.js b/app/components/Tray.js index f5e42c78db..745fbc20d1 100644 --- a/app/components/Tray.js +++ b/app/components/Tray.js @@ -17,8 +17,8 @@ export default class Tray extends Component { return ( <TrayMenu tray={this.props.handle}> - {loggedIn && <TrayItem label="Log out" click={::this.logout} />} - {loggedIn && <TrayItem type="separator" />} + <TrayItem label="Log out" click={::this.logout} visible={loggedIn} /> + <TrayItem type="separator" visible={loggedIn} /> <TrayItem label="Privacy Policy" /> <TrayItem label="Visit homepage" /> </TrayMenu> |
