fix(Processor): correct variable matching regex
This commit is contained in:
@@ -17,7 +17,7 @@ class Processor {
|
|||||||
untilStep?: Step;
|
untilStep?: Step;
|
||||||
testRun?: boolean;
|
testRun?: boolean;
|
||||||
|
|
||||||
static variableRegExp = /({{step\..+\..+}})/g;
|
static variableRegExp = /({{step\.[\da-zA-Z-]+(?:\.[\da-zA-Z-]+)+}})/g;
|
||||||
|
|
||||||
constructor(flow: Flow, processorOptions: ProcessorOptions) {
|
constructor(flow: Flow, processorOptions: ProcessorOptions) {
|
||||||
this.flow = flow;
|
this.flow = flow;
|
||||||
|
Reference in New Issue
Block a user