diff options
| author | Tommaso Sciortino <[email protected]> | 2025-07-10 09:21:20 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-10 16:21:20 +0000 |
| commit | 870797c16c7072bd40fa65d0331a1a1650318111 (patch) | |
| tree | aae2c5677b36987c9743c951b6ecf3e64b7e71d2 /packages/cli/src | |
| parent | bf508bfd7777d1eae7829fc7482a44685bd86e64 (diff) | |
Indent subcommands in help output (#3703)
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/ui/components/Help.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/components/Help.tsx b/packages/cli/src/ui/components/Help.tsx index 5a04514a..c51867af 100644 --- a/packages/cli/src/ui/components/Help.tsx +++ b/packages/cli/src/ui/components/Help.tsx @@ -78,8 +78,8 @@ export const Help: React.FC<Help> = ({ commands }) => ( {command.subCommands && command.subCommands.map((subCommand) => ( <Text key={subCommand.name} color={Colors.Foreground}> - <Text> </Text> <Text bold color={Colors.AccentPurple}> + {' '} {subCommand.name} </Text> {subCommand.description && ' - ' + subCommand.description} |
