Skip to content

Commit

Permalink
Merge pull request #563 from ivan/stopped-logged-window
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan committed Nov 9, 2023
2 parents b22627e + 8345744 commit df5ccbe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dashboard/assets/scripts/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,10 @@ class JobsRenderer {
// Hidden log windows aren't scrolled down while lines are added to them,
// but now that more are visible, we need to scroll them to the bottom.
for (const w of matchedWindows) {
// Don't scroll log windows we're mousing over
if (w.classList.contains("log-window-stopped")) {
continue;
}
scrollToBottom(w);
}
}
Expand Down

0 comments on commit df5ccbe

Please sign in to comment.