HBASE-8252 Regions by Region Server table in Master's table view needs styling

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1466233 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
eclark 2013-04-09 21:03:30 +00:00
parent 3d32b0c41b
commit 976aefb5c0
1 changed files with 2 additions and 2 deletions

View File

@ -287,12 +287,12 @@
<% } %>
</table>
<h2>Regions by Region Server</h2>
<table><tr><th>Region Server</th><th>Region Count</th></tr>
<table class="table"><tr><th>Region Server</th><th>Region Count</th></tr>
<%
for (Map.Entry<String, Integer> rdEntry : regDistribution.entrySet()) {
%>
<tr>
<td><%= rdEntry.getKey()%></td>
<td><a href="<%= rdEntry.getKey()%>"><%= rdEntry.getKey()%></a></td>
<td><%= rdEntry.getValue()%></td>
</tr>
<% } %>