fix: incorporate UUID in variable regex

This commit is contained in:
Ali BARIN
2022-03-05 12:57:03 +03:00
committed by Ömer Faruk Aydın
parent 20e725b590
commit f883dd1287
+1 -1
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;