mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #5520 from overleaf/ae-log-entry-height
Fix log entry height in new PDF preview GitOrigin-RevId: a9b7cae352da87f391c66720b109e3d9fd00fe52
This commit is contained in:
parent
d4035c4f1e
commit
bd3d0d124d
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ export default function PdfLogEntryRawContent({
|
|||
<div
|
||||
className="expand-collapse-container"
|
||||
style={{
|
||||
height: expanded ? 'auto' : collapsedSize,
|
||||
height: expanded || !needsExpander ? 'auto' : collapsedSize,
|
||||
}}
|
||||
>
|
||||
<pre className="log-entry-content-raw" ref={containerRef}>
|
||||
|
|
Loading…
Reference in a new issue