vcomply-workflow-engine 6.0.71 → 6.0.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33113,8 +33113,7 @@ class WorkflowComplianceComponent {
33113
33113
  viewResponsibilities() {
33114
33114
  let url;
33115
33115
  const id = this.responsibilityData?.data?.responsibility?.id;
33116
- let urlSubstring = +'compliance/responsibilities/' + id;
33117
- ;
33116
+ let urlSubstring = '/compliance/responsibilities/' + id;
33118
33117
  this.disconnectRefresh.emit(false);
33119
33118
  if (window.location.host.startsWith('localhost')) {
33120
33119
  url = 'http://' + window.location.host + urlSubstring;
@@ -45578,6 +45577,7 @@ class WorkflowProgramComponent {
45578
45577
  if (err?.error?.message?.includes('Category already exist')) {
45579
45578
  this.isNameExists = true;
45580
45579
  }
45580
+ this.postIframeMessage(PostMessageEvent.PROGRAM_CREATED, err);
45581
45581
  },
45582
45582
  });
45583
45583
  }
@@ -45596,6 +45596,7 @@ class WorkflowProgramComponent {
45596
45596
  if (err?.error?.message?.includes('Category already exist')) {
45597
45597
  this.isNameExists = true;
45598
45598
  }
45599
+ this.postIframeMessage(PostMessageEvent.PROGRAM_UPDATED, err);
45599
45600
  },
45600
45601
  });
45601
45602
  }