Skip to content

Commit df5ccbe

Browse files
authored
Merge pull request #563 from ivan/stopped-logged-window
2 parents b22627e + 8345744 commit df5ccbe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dashboard/assets/scripts/dashboard.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,10 @@ class JobsRenderer {
663663
// Hidden log windows aren't scrolled down while lines are added to them,
664664
// but now that more are visible, we need to scroll them to the bottom.
665665
for (const w of matchedWindows) {
666+
// Don't scroll log windows we're mousing over
667+
if (w.classList.contains("log-window-stopped")) {
668+
continue;
669+
}
666670
scrollToBottom(w);
667671
}
668672
}

0 commit comments

Comments
 (0)