aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/webapp/WEB-INF
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2012-03-13 17:10:10 +0100
committerFabrice Bellingard <bellingard@gmail.com>2012-03-13 17:10:10 +0100
commite3776e7ccf6fdceacdbf7b332e74122f8303e54a (patch)
treeac6bc15a6a9db888d94d1558306f0266491ffb0a /sonar-server/src/main/webapp/WEB-INF
parent6e080c04a7a0801e189f71ff7fac75511537c868 (diff)
downloadsonarqube-e3776e7ccf6fdceacdbf7b332e74122f8303e54a.tar.gz
sonarqube-e3776e7ccf6fdceacdbf7b332e74122f8303e54a.zip
SONAR-3297 Sort issue with stripes on groups
Diffstat (limited to 'sonar-server/src/main/webapp/WEB-INF')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb3
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb1
2 files changed, 1 insertions, 3 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb
index 52f8ea303f7..bb7a04e1cfc 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb
@@ -14,8 +14,7 @@
</thead>
<tbody >
<% @groups.each do |group|%>
- <% clazz = cycle("even", "odd", :name => 'index_user') %>
- <tr class="<%= clazz %>" id="group-<%= u group.name -%>">
+ <tr id="group-<%= u group.name -%>">
<td class="left"><%= group.name %></td>
<td class="left" style="word-break:break-all"><%=group.description%></td>
<td class="left">
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb
index def16e51634..9df129cb061 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb
@@ -14,7 +14,6 @@
</thead>
<tbody >
<% @users.each do |user|%>
- <% clazz = cycle("even", "odd", :name => 'index_user') %>
<tr id="user-<%= u user.login -%>">
<td class="left" valign="top"><%=user.login %></td>
<td class="left" valign="top"><%=user.name %></td>