diff options
| -rw-r--r-- | packages/cli/src/ui/components/AboutBox.tsx | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/packages/cli/src/ui/components/AboutBox.tsx b/packages/cli/src/ui/components/AboutBox.tsx index a1a3a562..9ffa1a90 100644 --- a/packages/cli/src/ui/components/AboutBox.tsx +++ b/packages/cli/src/ui/components/AboutBox.tsx @@ -36,7 +36,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>CLI Version</Text> + <Text bold color={Colors.LightBlue}> + CLI Version + </Text> </Box> <Box> <Text>{cliVersion}</Text> @@ -44,7 +46,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>Model</Text> + <Text bold color={Colors.LightBlue}> + Model + </Text> </Box> <Box> <Text>{modelVersion}</Text> @@ -52,7 +56,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>Sandbox</Text> + <Text bold color={Colors.LightBlue}> + Sandbox + </Text> </Box> <Box> <Text>{sandboxEnv}</Text> @@ -60,7 +66,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>OS</Text> + <Text bold color={Colors.LightBlue}> + OS + </Text> </Box> <Box> <Text>{osVersion}</Text> |
