Indent subcommands in help output (#3703)

This commit is contained in:
Tommaso Sciortino 2025-07-10 09:21:20 -07:00 committed by GitHub
parent bf508bfd77
commit 870797c16c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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}