Skip to content

Commit a7964fe

Browse files
committed
Fix to Stage UI to display numbers on progress bar
Fixes an issue on Stage UI to display numbers on progress bar which are today hidden behind the progress bar div.
1 parent 2c0aa22 commit a7964fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private[ui] class StageTable(stages: Seq[StageInfo], parent: JobProgressUI) {
6363
val startWidth = "width: %s%%".format((started.toDouble/total)*100)
6464

6565
<div class="progress">
66-
<span style="text-align:center; position:absolute; width:100%;">
66+
<span style="text-align:center; position:absolute; width:100%; left:0;">
6767
{completed}/{total} {failed}
6868
</span>
6969
<div class="bar bar-completed" style={completeWidth}></div>

0 commit comments

Comments
 (0)