We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf99a44 commit 2f24007Copy full SHA for 2f24007
1 file changed
webapp/packages/core-blocks/src/useErrorDetails.ts
@@ -61,11 +61,11 @@ export function useErrorDetails(error: IErrorDetailsHook['error']): HookType {
61
let workflowId: string | undefined;
62
63
if (typeof message === 'string') {
64
- const match = message.match(/WorkflowID:(\d+)/);
+ const match = message.match(/workflow_id:(\d+)/);
65
66
if (match) {
67
workflowId = match[1];
68
- message = message.replace(/WorkflowID:\d+,?\s*/g, '').trim();
+ message = message.replace(/workflow_id:\d+,?\s*/g, '').trim();
69
}
70
71
0 commit comments