fix: minor text changes to scheduled task

This commit is contained in:
Felarof
2026-01-02 12:40:56 -08:00
parent 951e1b0cc1
commit c26a529c8a
2 changed files with 3 additions and 6 deletions

View File

@@ -97,7 +97,7 @@ export const ScheduleResults: FC = () => {
<div className="flex items-center gap-3">
<Calendar className="h-4 w-4 text-muted-foreground" />
<span className="font-medium text-foreground text-sm">
Scheduler Outputs
Scheduled Task Outputs
</span>
{runningCount > 0 && (
<Badge variant="secondary" className="text-xs">

View File

@@ -39,10 +39,7 @@ const formSchema = z
.string()
.min(1, 'Name is required')
.max(100, 'Name must be 100 characters or less'),
query: z
.string()
.min(1, 'Query is required')
.max(2000, 'Query must be 2000 characters or less'),
query: z.string().min(1, 'Prompt is required'),
scheduleType: z.enum(['daily', 'hourly', 'minutes']),
scheduleTime: z.string().optional(),
scheduleInterval: z.number().int().min(1).max(60).optional(),
@@ -172,7 +169,7 @@ export const NewScheduledTaskDialog: FC<NewScheduledTaskDialogProps> = ({
name="query"
render={({ field }) => (
<FormItem>
<FormLabel>Query</FormLabel>
<FormLabel>Prompt</FormLabel>
<FormControl>
<Textarea
placeholder="What should the agent do? e.g., Check my email and summarize important messages"