Skip to content

Commit bb3061c

Browse files
committed
Fix missing terminalName input in group command UI
Resolve inability to set terminal name for group commands fix #57
1 parent 2c22abe commit bb3061c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/web-view/src/components/group-command-item.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ export const GroupCommandItem = ({
6161
placeholder="Command (e.g., npm start)"
6262
value={command.command || ""}
6363
/>
64+
<Input
65+
onChange={(e) => onUpdate(index, { terminalName: e.target.value })}
66+
placeholder="Terminal name (optional)"
67+
value={command.terminalName || ""}
68+
/>
6469
<div className="flex items-center gap-4">
6570
<div className="flex-shrink-0">
6671
<Checkbox

0 commit comments

Comments
 (0)