Skip to content

Commit 47d0021

Browse files
authored
Adjust dialog width based on available agents
1 parent 6444ebb commit 47d0021

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/NewTaskDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ export function NewTaskDialog(props: NewTaskDialogProps) {
464464
<Dialog
465465
open={props.open}
466466
onClose={props.onClose}
467-
width={store.availableAgents.length > 8 ? '540px' : '420px'}
467+
width={store.availableAgents.length > 8 ? '580px' : '500px'}
468468
panelStyle={{ gap: '20px' }}
469469
>
470470
<form

0 commit comments

Comments
 (0)