mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
fix: HTTP Request tool - allow hyphens in placeholders (#10037)
This commit is contained in:
parent
f3833a7ce8
commit
8cd93704be
|
@ -355,7 +355,7 @@ export const configureResponseOptimizer = (ctx: IExecuteFunctions, itemIndex: nu
|
|||
};
|
||||
|
||||
const extractPlaceholders = (text: string): string[] => {
|
||||
const placeholder = /(\{[a-zA-Z0-9_]+\})/g;
|
||||
const placeholder = /(\{[a-zA-Z0-9_-]+\})/g;
|
||||
const returnData: string[] = [];
|
||||
|
||||
const matches = text.matchAll(placeholder);
|
||||
|
|
Loading…
Reference in a new issue