@veloceapps/sdk 10.0.0-37 → 10.0.0-38
Sign up to get free protection for your applications and to get access to all the features.
@@ -336,8 +336,9 @@ class FlowInfoService {
|
|
336
336
|
if (!flow) {
|
337
337
|
return of(undefined);
|
338
338
|
}
|
339
|
+
const isLegacy = !!flow && flow?.properties.stateful == null;
|
339
340
|
let flowTemplates$ = of(undefined);
|
340
|
-
if (!
|
341
|
+
if (!isLegacy) {
|
341
342
|
flowTemplates$ = this.initFlowTemplates$(flow).pipe(map(() => undefined));
|
342
343
|
}
|
343
344
|
return flowTemplates$.pipe(tap(() => {
|