Skip to content

Commit bcdb724

Browse files
ImTheKaidutow
authored andcommitted
fix visualization of 'All teams' listed in the settings view
Signed-off-by: Kai Wagner <kai.wagner@percona.com>
1 parent 12f35fc commit bcdb724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/teams/index.html.slim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- @your_teams.each do |team|
1212
li
1313
= link_to team.name, team_path(team)
14-
span.team-meta = "#{team.team_members.count} member(s)"
14+
span.team-meta = " - #{team.team_members.count} member(s)"
1515
- else
1616
p You are not in any teams yet.
1717

@@ -30,6 +30,6 @@
3030
- @all_teams.each do |team|
3131
li
3232
= link_to team.name, team_path(team)
33-
span.team-meta = "#{team.team_members.count} member(s)"
33+
span.team-meta = " - #{team.team_members.count} member(s)"
3434
- else
3535
p No teams yet.

0 commit comments

Comments
 (0)