File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -788,7 +788,8 @@ const AIViewInner: React.FC<AIViewProps> = ({
788788 < ConnectionStatusIndicator />
789789 { isQueuedAgentTask && (
790790 < div className = "border-border-medium bg-background-secondary text-muted mb-2 rounded-md border px-3 py-2 text-xs" >
791- This agent task is queued and will start automatically when a parallel slot is available.
791+ This agent task is queued and will start automatically when a parallel slot is
792+ available.
792793 </ div >
793794 ) }
794795 < ChatInput
Original file line number Diff line number Diff line change @@ -1111,7 +1111,8 @@ export class TaskService {
11111111 const config = this . config . loadConfigOrDefault ( ) ;
11121112 const taskSettings : TaskSettings = config . taskSettings ?? DEFAULT_TASK_SETTINGS ;
11131113 assert (
1114- Number . isFinite ( taskSettings . maxParallelAgentTasks ) && taskSettings . maxParallelAgentTasks > 0 ,
1114+ Number . isFinite ( taskSettings . maxParallelAgentTasks ) &&
1115+ taskSettings . maxParallelAgentTasks > 0 ,
11151116 "TaskService.maybeStartQueuedTasks: maxParallelAgentTasks must be a positive number"
11161117 ) ;
11171118
You can’t perform that action at this time.
0 commit comments