diff --git a/public/app/features/profile/UserTeams.tsx b/public/app/features/profile/UserTeams.tsx index 9f3010045e1..70787117c7a 100644 --- a/public/app/features/profile/UserTeams.tsx +++ b/public/app/features/profile/UserTeams.tsx @@ -1,6 +1,6 @@ import { PureComponent } from 'react'; -import { LoadingPlaceholder } from '@grafana/ui'; +import { LoadingPlaceholder, ScrollContainer } from '@grafana/ui'; import { t, Trans } from 'app/core/internationalization'; import { Team } from 'app/types'; @@ -26,39 +26,41 @@ export class UserTeams extends PureComponent {

Teams

- - - - - - - - - - {teams.map((team: Team, index) => { - return ( - - - - - - - ); - })} - -
- - Name - - Email - - Members -
- - {team.name}{team.email}{team.memberCount}
+ + + + + + + + + + + {teams.map((team: Team, index) => { + return ( + + + + + + + ); + })} + +
+ + Name + + Email + + Members +
+ + {team.name}{team.email}{team.memberCount}
+
); }