mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-13 05:12:55 -07:00
Fix missing bottom border in tool boxes
This commit is contained in:
@@ -137,7 +137,7 @@ export const ToolConfirmationQueue: React.FC<ToolConfirmationQueueProps> = ({
|
|||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
<Box
|
<Box
|
||||||
height={0}
|
height={1}
|
||||||
width={mainAreaWidth}
|
width={mainAreaWidth}
|
||||||
borderLeft={true}
|
borderLeft={true}
|
||||||
borderRight={true}
|
borderRight={true}
|
||||||
|
|||||||
@@ -239,7 +239,7 @@ export const ToolGroupMessage: React.FC<ToolGroupMessageProps> = ({
|
|||||||
*/
|
*/
|
||||||
(visibleToolCalls.length > 0 || borderBottomOverride !== undefined) && (
|
(visibleToolCalls.length > 0 || borderBottomOverride !== undefined) && (
|
||||||
<Box
|
<Box
|
||||||
height={0}
|
height={1}
|
||||||
width={terminalWidth}
|
width={terminalWidth}
|
||||||
borderLeft={true}
|
borderLeft={true}
|
||||||
borderRight={true}
|
borderRight={true}
|
||||||
|
|||||||
Reference in New Issue
Block a user