Co-authored-by: Jacob Richman <jacob314@gmail.com>
This commit is contained in:
parent
dcb9381138
commit
64767c52fe
|
@ -751,14 +751,16 @@ const App = ({ config, settings, startupWarnings = [] }: AppProps) => {
|
||||||
|
|
||||||
{showErrorDetails && (
|
{showErrorDetails && (
|
||||||
<OverflowProvider>
|
<OverflowProvider>
|
||||||
<DetailedMessagesDisplay
|
<Box flexDirection="column">
|
||||||
messages={filteredConsoleMessages}
|
<DetailedMessagesDisplay
|
||||||
maxHeight={
|
messages={filteredConsoleMessages}
|
||||||
constrainHeight ? debugConsoleMaxHeight : undefined
|
maxHeight={
|
||||||
}
|
constrainHeight ? debugConsoleMaxHeight : undefined
|
||||||
width={inputWidth}
|
}
|
||||||
/>
|
width={inputWidth}
|
||||||
<ShowMoreLines constrainHeight={constrainHeight} />
|
/>
|
||||||
|
<ShowMoreLines constrainHeight={constrainHeight} />
|
||||||
|
</Box>
|
||||||
</OverflowProvider>
|
</OverflowProvider>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue