Skip to content

Commit

Permalink
Limit the max width of the error message and fix nits in the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
zsxwing committed Apr 14, 2015
1 parent 0b226f9 commit 7168807
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class BatchPage(parent: StreamingTab) extends WebUIPage("batch") {
} else {
""
}
<td valign="middle">{failureReasonSummary}{details}</td>
<td valign="middle" style="max-width: 300px">{failureReasonSummary}{details}</td>
}

private def jobsTable(jobInfos: Seq[(OutputOpId, JobId)]): Seq[Node] = {
Expand Down Expand Up @@ -203,15 +203,15 @@ class BatchPage(parent: StreamingTab) extends WebUIPage("batch") {
</li>
<li>
<strong>Scheduling delay: </strong>
{formattedSchedulingDelay} records
{formattedSchedulingDelay}
</li>
<li>
<strong>Processing time: </strong>
{formattedProcessingTime}
</li>
<li>
<strong>Total delay: </strong>
{formattedTotalDelay} records
{formattedTotalDelay}
</li>
</ul>
</div>
Expand Down

0 comments on commit 7168807

Please sign in to comment.