From 4b1104f52c3726ca5d8fd655c5401b1bec2f40a7 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Tue, 29 Oct 2024 21:48:45 -0400 Subject: [PATCH] Add node id to execution error report (#1371) --- src/components/dialog/content/ExecutionErrorDialogContent.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/dialog/content/ExecutionErrorDialogContent.vue b/src/components/dialog/content/ExecutionErrorDialogContent.vue index 6dd589609a..445c179789 100644 --- a/src/components/dialog/content/ExecutionErrorDialogContent.vue +++ b/src/components/dialog/content/ExecutionErrorDialogContent.vue @@ -93,6 +93,7 @@ const generateReport = (systemStats: SystemStats, logs: string) => { reportContent.value = ` # ComfyUI Error Report ## Error Details +- **Node ID:** ${props.error.node_id} - **Node Type:** ${props.error.node_type} - **Exception Type:** ${props.error.exception_type} - **Exception Message:** ${props.error.exception_message}