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 34da392 commit 67785e6Copy full SHA for 67785e6
1 file changed
packages/ui/src/features/loops/components/LoopForm.tsx
@@ -173,6 +173,15 @@ export function LoopForm({ loop }: LoopFormProps) {
173
onChange={(e) => patch({ name: e.target.value })}
174
/>
175
</Field>
176
+ <Field label="Description">
177
+ <TextField.Root
178
+ size="2"
179
+ value={values.description}
180
+ placeholder="A short summary shown on the Loops list"
181
+ disabled={isSubmitting}
182
+ onChange={(e) => patch({ description: e.target.value })}
183
+ />
184
+ </Field>
185
<Field label="Instructions" required>
186
<TextArea
187
value={values.instructions}
0 commit comments