Skip to content
Snippets Groups Projects
Commit 8e2d7f65 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #383 from metabase/fix_org_nav_title

we actually need to show the org title in the nav when there is only a single org :)
parents 3c74bb3d 7402ca45
Branches
Tags
No related merge requests found
......@@ -21,8 +21,11 @@
<!-- MAIN NAV -->
<nav class="CoreNav clearfix" ng-show="nav === 'main'">
<div class="col col-sm-12">
<div class="NavItem Dropdown float-left" dropdown on-toggle="toggled(open)">
<span dropdown-toggle ng-if="user.is_multi_org">
<div class="NavItem float-left" ng-if="!user.is_multi_org">
<span class="NavItem-text">{{currentOrg.name}}</span>
</div>
<div class="NavItem Dropdown float-left" dropdown on-toggle="toggled(open)" ng-if="user.is_multi_org">
<span dropdown-toggle>
<span class="NavItem-text" ng-bind="currentOrg.name"></span>
<cv-chevron-down-icon width="8px" height="8px"></cv-chevron-down-icon>
</span>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment