summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/AboutBox.tsx
diff options
context:
space:
mode:
authorEvan Otero <[email protected]>2025-08-15 12:32:15 -0400
committerGitHub <[email protected]>2025-08-15 16:32:15 +0000
commitab1c483cab659ac2ab081e74a0e3bd0fcc48a734 (patch)
tree939865098f71698aa1328125cba96702ae1af2ee /packages/cli/src/ui/components/AboutBox.tsx
parent72195d55538c11a2cf6e24e061d526395b552fd3 (diff)
feat(about): Add the IDE Client's display name to `/about` (#6311)
Co-authored-by: Bryan Morgan <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/components/AboutBox.tsx')
-rw-r--r--packages/cli/src/ui/components/AboutBox.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/AboutBox.tsx b/packages/cli/src/ui/components/AboutBox.tsx
index 71afbdd4..a0954576 100644
--- a/packages/cli/src/ui/components/AboutBox.tsx
+++ b/packages/cli/src/ui/components/AboutBox.tsx
@@ -16,6 +16,7 @@ interface AboutBoxProps {
modelVersion: string;
selectedAuthType: string;
gcpProject: string;
+ ideClient: string;
}
export const AboutBox: React.FC<AboutBoxProps> = ({
@@ -25,6 +26,7 @@ export const AboutBox: React.FC<AboutBoxProps> = ({
modelVersion,
selectedAuthType,
gcpProject,
+ ideClient,
}) => (
<Box
borderStyle="round"
@@ -115,5 +117,17 @@ export const AboutBox: React.FC<AboutBoxProps> = ({
</Box>
</Box>
)}
+ {ideClient && (
+ <Box flexDirection="row">
+ <Box width="35%">
+ <Text bold color={Colors.LightBlue}>
+ IDE Client
+ </Text>
+ </Box>
+ <Box>
+ <Text>{ideClient}</Text>
+ </Box>
+ </Box>
+ )}
</Box>
);