Revert position of user nav item back to bottom
parent
08982ad730
commit
01aa7f38ac
|
@ -88,14 +88,6 @@ const SideNav = React.createClass({
|
||||||
<span className="sidebar--icon icon cubo-uniform" />
|
<span className="sidebar--icon icon cubo-uniform" />
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
{isUsingAuth
|
|
||||||
? <UserNavBlock
|
|
||||||
logoutLink={logoutLink}
|
|
||||||
links={links}
|
|
||||||
me={me}
|
|
||||||
sourcePrefix={sourcePrefix}
|
|
||||||
/>
|
|
||||||
: null}
|
|
||||||
<NavBlock
|
<NavBlock
|
||||||
icon="cubo-node"
|
icon="cubo-node"
|
||||||
link={`${sourcePrefix}/hosts`}
|
link={`${sourcePrefix}/hosts`}
|
||||||
|
@ -165,7 +157,6 @@ const SideNav = React.createClass({
|
||||||
</NavListItem>
|
</NavListItem>
|
||||||
</NavBlock>
|
</NavBlock>
|
||||||
</Authorized>
|
</Authorized>
|
||||||
|
|
||||||
<NavBlock
|
<NavBlock
|
||||||
icon="cog-thick"
|
icon="cog-thick"
|
||||||
link={`${sourcePrefix}/manage-sources`}
|
link={`${sourcePrefix}/manage-sources`}
|
||||||
|
@ -176,6 +167,14 @@ const SideNav = React.createClass({
|
||||||
title="Configuration"
|
title="Configuration"
|
||||||
/>
|
/>
|
||||||
</NavBlock>
|
</NavBlock>
|
||||||
|
{isUsingAuth
|
||||||
|
? <UserNavBlock
|
||||||
|
logoutLink={logoutLink}
|
||||||
|
links={links}
|
||||||
|
me={me}
|
||||||
|
sourcePrefix={sourcePrefix}
|
||||||
|
/>
|
||||||
|
: null}
|
||||||
</NavBar>
|
</NavBar>
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue