We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b22627e + 8345744 commit df5ccbeCopy full SHA for df5ccbe
dashboard/assets/scripts/dashboard.js
@@ -663,6 +663,10 @@ class JobsRenderer {
663
// Hidden log windows aren't scrolled down while lines are added to them,
664
// but now that more are visible, we need to scroll them to the bottom.
665
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
+ }
670
scrollToBottom(w);
671
}
672
0 commit comments