Merge pull request #549 from automatisch/issue-547

fix(Processor): correct variable matching regex
This commit is contained in:
Ömer Faruk Aydın
2022-09-27 20:07:47 +03:00
committed by GitHub

View File

@@ -17,7 +17,7 @@ class Processor {
untilStep?: Step;
testRun?: boolean;
static variableRegExp = /({{step\..+\..+}})/g;
static variableRegExp = /({{step\.[\da-zA-Z-]+(?:\.[\da-zA-Z-]+)+}})/g;
constructor(flow: Flow, processorOptions: ProcessorOptions) {
this.flow = flow;