App logs window scroll issues
Solved
Support
-
In firefox, when I scroll up, the view does not automatically scroll for me when as new lines come in.
-
-
-
I think the behavior even comes from upstream xterm.js but @nebulon can confirm
-
The logviewer does not use xterm.js but just plain DOM elements. The root cause of this is, that we call
scrollIntoView()
for an anchor element at the bottom of the page, if the user has not vertically scrolled.
Since this element sits bottom left, the browser also scrolls left. I will see what can be done to keep horizontal scroll position. -
-