Feat: Display error messages from intermediate nodes. #10427 (#12038)

### What problem does this PR solve?

Feat: Display error messages from intermediate nodes. #10427

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-12-19 17:44:45 +08:00
committed by GitHub
parent 8683a5b1b7
commit 0494b92371
2 changed files with 29 additions and 2 deletions

View File

@ -182,6 +182,7 @@ export default function Agent() {
const handleButtonRunClick = useCallback(() => {
if (isWebhookMode) {
saveGraph();
showWebhookTestSheet();
} else if (isPipeline) {
handleRunPipeline();
@ -193,6 +194,7 @@ export default function Agent() {
handleRunPipeline,
isPipeline,
isWebhookMode,
saveGraph,
showWebhookTestSheet,
]);