We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c22abe commit bb3061cCopy full SHA for bb3061c
src/web-view/src/components/group-command-item.tsx
@@ -61,6 +61,11 @@ export const GroupCommandItem = ({
61
placeholder="Command (e.g., npm start)"
62
value={command.command || ""}
63
/>
64
+ <Input
65
+ onChange={(e) => onUpdate(index, { terminalName: e.target.value })}
66
+ placeholder="Terminal name (optional)"
67
+ value={command.terminalName || ""}
68
+ />
69
<div className="flex items-center gap-4">
70
<div className="flex-shrink-0">
71
<Checkbox
0 commit comments