Undo debug mode

pull/1567/head
Alex P 2017-05-30 17:01:48 -07:00
parent 1ed504d8c6
commit 4d4110c261
1 changed files with 5 additions and 3 deletions

View File

@ -79,9 +79,11 @@ const SideNav = React.createClass({
title="Configuration"
/>
</NavBlock>
<NavBlock icon="user" className="sidebar__square-last">
<NavHeader link={logoutLink} title="Logout" />
</NavBlock>
{showLogout
? <NavBlock icon="user" className="sidebar__square-last">
<NavHeader link={logoutLink} title="Logout" />
</NavBlock>
: null}
</NavBar>
},
})