fix: show ctrl+s shortcut to expand debug console #2002 (#2491)

Co-authored-by: Jacob Richman <jacob314@gmail.com>
This commit is contained in:
Devansh Sharma 2025-07-03 21:42:02 +02:00 committed by GitHub
parent dcb9381138
commit 64767c52fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 8 deletions

View File

@ -751,14 +751,16 @@ const App = ({ config, settings, startupWarnings = [] }: AppProps) => {
{showErrorDetails && (
<OverflowProvider>
<DetailedMessagesDisplay
messages={filteredConsoleMessages}
maxHeight={
constrainHeight ? debugConsoleMaxHeight : undefined
}
width={inputWidth}
/>
<ShowMoreLines constrainHeight={constrainHeight} />
<Box flexDirection="column">
<DetailedMessagesDisplay
messages={filteredConsoleMessages}
maxHeight={
constrainHeight ? debugConsoleMaxHeight : undefined
}
width={inputWidth}
/>
<ShowMoreLines constrainHeight={constrainHeight} />
</Box>
</OverflowProvider>
)}