Skip to content

Commit

Permalink
fixed style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ajbozarth committed Jan 9, 2016
1 parent f0a725d commit bbd9c0d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions core/src/main/scala/org/apache/spark/ui/exec/ExecutorsPage.scala
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,18 @@ private[ui] class ExecutorsPage(
val diskUsed = info.diskUsed
<tr>
{
if (totalRow)
if (totalRow) {
<td sorttable_customkey="-1"></td>
else
} else {
<td>{info.id}</td>
}
}
{
if (totalRow)
<td sorttable_customkey="-1" style="font-weight: bold;">"TOTALS"</td>
else
if (totalRow) {
<td sorttable_customkey="-1" style="font-weight: bold;">TOTALS</td>
} else {
<td>{info.hostPort}</td>
}
}
<td>{info.rddBlocks}</td>
<td sorttable_customkey={memoryUsed.toString}>
Expand Down

0 comments on commit bbd9c0d

Please sign in to comment.