diff --git a/src/components/dialog/content/ExecutionErrorDialogContent.vue b/src/components/dialog/content/ExecutionErrorDialogContent.vue index 1c6bbab8fa..4201c6c76c 100644 --- a/src/components/dialog/content/ExecutionErrorDialogContent.vue +++ b/src/components/dialog/content/ExecutionErrorDialogContent.vue @@ -30,6 +30,7 @@ v-if="sendReportOpen" error-type="graphExecutionError" :extra-fields="[stackTraceField]" + :tags="{ exceptionMessage: props.error.exception_message }" />
}>() -const { defaultFields = ['Workflow', 'Logs', 'SystemStats', 'Settings'] } = - props +const { + defaultFields = ['Workflow', 'Logs', 'SystemStats', 'Settings'], + tags = {} +} = props const { t } = useI18n() const toast = useToast() @@ -168,7 +171,8 @@ const createCaptureContext = async (): Promise => { user: getUserInfo(), level: 'error', tags: { - errorType: props.errorType + errorType: props.errorType, + ...tags }, extra: { ...createFeedback(),