mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-15 06:12:50 -07:00
fix(ui): prevent content leak in MaxSizedBox bottom overflow (#17991)
This commit is contained in:
@@ -120,7 +120,12 @@ export const MaxSizedBox: React.FC<MaxSizedBoxProps> = ({
|
||||
hidden ...
|
||||
</Text>
|
||||
)}
|
||||
<Box flexDirection="column" overflow="hidden" flexGrow={1}>
|
||||
<Box
|
||||
flexDirection="column"
|
||||
overflow="hidden"
|
||||
flexGrow={0}
|
||||
maxHeight={isOverflowing ? visibleContentHeight : undefined}
|
||||
>
|
||||
<Box
|
||||
flexDirection="column"
|
||||
ref={onRefChange}
|
||||
|
||||
Reference in New Issue
Block a user