Skip to content

Container logs are present in DOM but not scrollable to bottom.#1599

Open
LegendArtur wants to merge 4 commits intoapache:mainfrom
LegendArtur:main
Open

Container logs are present in DOM but not scrollable to bottom.#1599
LegendArtur wants to merge 4 commits intoapache:mainfrom
LegendArtur:main

Conversation

@LegendArtur
Copy link
Contributor

The LogViewer extends beyond visible area, making recent logs inaccessible.

Changes

  • Wrap LogViewer in flex container with height: '100%'
  • Change LogViewer height from 100vh to 100%
  • The parent container (ProjectPanel/SystemPage) already provides correct height via flexbox. Using viewport height (100vh) incorrectly references the full browser window instead of available container space.
// Before
<div className="project-log-tab">
  <LogViewer height={"100vh"} ... />
</div>

// After  
<div className="project-log-tab" style={{display: 'flex', flexDirection: 'column', height: '100%'}}>
  <LogViewer height={'100%'} ... />
</div>

Affects both project-level and system-level log viewers.

Copilot AI and others added 4 commits February 15, 2026 08:32
Co-authored-by: LegendArtur <29106800+LegendArtur@users.noreply.github.com>
Co-authored-by: LegendArtur <29106800+LegendArtur@users.noreply.github.com>
…ration-issue

Fix log viewer scroll overflow caused by viewport height
@LegendArtur
Copy link
Contributor Author

Fixes #1581

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants