now hides team header when no teams + fix for list hidden when only one team

This commit is contained in:
Patrick O'Carroll 2018-08-13 15:07:29 +02:00
parent a94406ac53
commit 535bab1baa
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
<prefs-control mode="user"></prefs-control>
<h3 class="page-heading">Teams</h3>
<h3 class="page-heading" ng-show="ctrl.showTeamsList">Teams</h3>
<div class="gf-form-group" ng-show="ctrl.showTeamsList">
<table class="filter-table form-inline">
<thead>

View File

@ -30,7 +30,7 @@ export class ProfileCtrl {
getUserTeams() {
this.backendSrv.get('/api/user/teams').then(teams => {
this.teams = teams;
this.showTeamsList = this.teams.length > 1;
this.showTeamsList = this.teams.length > 0;
});
}