fix: incorporate UUID in variable regex

This commit is contained in:
Ali BARIN
2022-03-05 10:15:29 +01:00
committed by Ömer Faruk Aydın
parent 20e725b590
commit f883dd1287

View File

@@ -11,7 +11,7 @@ class Processor {
flow: Flow;
untilStep: Step;
static variableRegExp = /({{step\.\d*\..+?}})/g;
static variableRegExp = /({{step\..+\..+}})/g;
constructor(flow: Flow, untilStep: Step) {
this.flow = flow;