mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 09:17:53 +00:00
feat: subagent runtime & CLI display - done
This commit is contained in:
@@ -122,7 +122,7 @@ export function CreationSummary({
|
||||
tools: Array.isArray(state.selectedTools)
|
||||
? state.selectedTools
|
||||
: undefined,
|
||||
backgroundColor: state.backgroundColor,
|
||||
color: state.color,
|
||||
};
|
||||
|
||||
// Create the subagent
|
||||
@@ -243,12 +243,12 @@ export function CreationSummary({
|
||||
<Text>{toolsDisplay}</Text>
|
||||
</Box>
|
||||
|
||||
{shouldShowColor(state.backgroundColor) && (
|
||||
{shouldShowColor(state.color) && (
|
||||
<Box>
|
||||
<Text bold>Color: </Text>
|
||||
<Box backgroundColor={getColorForDisplay(state.backgroundColor)}>
|
||||
<Text color="black">{` ${state.generatedName} `}</Text>
|
||||
</Box>
|
||||
<Text
|
||||
color={getColorForDisplay(state.color)}
|
||||
>{` ${state.generatedName} `}</Text>
|
||||
</Box>
|
||||
)}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user