Feat: Display the agent node running timeline #3221 (#8185)

### What problem does this PR solve?

Feat: Display the agent node running timeline #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-06-11 14:24:43 +08:00
committed by GitHub
parent f0a3d91171
commit 31003cd5f6
5 changed files with 546 additions and 51 deletions

View File

@ -10,16 +10,12 @@ import AgentChatBox from './box';
export function ChatSheet({ hideModal }: IModalProps<any>) {
return (
<Sheet
open
modal={false}
onOpenChange={(open) => {
console.log('🚀 ~ ChatSheet ~ open:', open);
hideModal();
}}
>
<Sheet open modal={false} onOpenChange={hideModal}>
<SheetTitle className="hidden"></SheetTitle>
<SheetContent className={cn('top-20 p-0')}>
<SheetContent
className={cn('top-20 p-0')}
onInteractOutside={(e) => e.preventDefault()}
>
<SheetHeader>
<SheetTitle>Are you absolutely sure?</SheetTitle>
</SheetHeader>