@veloceapps/sdk 8.0.0-120 → 8.0.0-121

Sign up to get free protection for your applications and to get access to all the features.
@@ -1152,6 +1152,9 @@ class FlowStateService {
1152
1152
  }));
1153
1153
  })
1154
1154
  .filter(isDefined);
1155
+ if (!owners$.length) {
1156
+ return of(undefined);
1157
+ }
1155
1158
  return forkJoin(owners$).pipe(map$1(noop));
1156
1159
  }
1157
1160
  executeActionScript(request, executable) {
@@ -1187,6 +1190,9 @@ class FlowStateService {
1187
1190
  actions: [],
1188
1191
  selectors: {},
1189
1192
  };
1193
+ if (this.getFlowSafe().properties.standalone) {
1194
+ return request;
1195
+ }
1190
1196
  const ownerId = this.getOwnerIdByScope(UITemplateType.FLOW_ENGINE);
1191
1197
  request.actions?.push({
1192
1198
  apiName: 'INITIALIZE_STATE',