Skip to content

Commit 8f6610c

Browse files
committed
Fixed conflict
2 parents b587cf2 + 7fe0f3f commit 8f6610c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

core/src/main/resources/org/apache/spark/ui/static/timeline-view.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ div#application-timeline, div#job-timeline {
7373
background-color: #FDFFCA;
7474
}
7575

76+
#application-timeline div.legend-area {
77+
margin-top: 5px;
78+
}
79+
7680
.vis.timeline div.content {
7781
width: 100%;
7882
}

core/src/main/resources/org/apache/spark/ui/static/timeline-view.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ function drawJobTimeline(groupArray, eventObjArray, startTime) {
123123
var id = idAndAttempt[0];
124124
var attempt = idAndAttempt[1];
125125
$("#stage-" + id + "-" + attempt).removeClass("corresponding-item-hover");
126-
$($(this).find("div.job-timeline-content")[0]).tooltip("hide");
126+
$($(this).find("div.job-timeline-content")[0])
127+
.tooltip("hide");
127128
}
128129
);
129130
});

0 commit comments

Comments
 (0)