vcomply-workflow-engine 6.1.69 → 6.1.70
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.
- package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +2 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.mjs +2 -2
- package/esm2022/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.mjs +2 -2
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +2 -1
- package/fesm2022/vcomply-workflow-engine.mjs +4 -2
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6808,7 +6808,7 @@ class ProgramResponsibilityListingComponent {
|
|
|
6808
6808
|
return {
|
|
6809
6809
|
...responsibility,
|
|
6810
6810
|
name: responsibility?.title || '',
|
|
6811
|
-
controlId: responsibility?.controlId ? '[CID-' + responsibility?.controlId
|
|
6811
|
+
controlId: responsibility?.controlId ? '[CID-' + responsibility?.controlId + ']' : '',
|
|
6812
6812
|
_id: responsibility?.rid,
|
|
6813
6813
|
entrustedBy: {
|
|
6814
6814
|
name: assignorDetails?.name || '',
|
|
@@ -9604,6 +9604,7 @@ class FormatAndEvidenceComponent {
|
|
|
9604
9604
|
original_filename: data.org_file,
|
|
9605
9605
|
linkSet: '',
|
|
9606
9606
|
type: file.type,
|
|
9607
|
+
fid: data?.fid,
|
|
9607
9608
|
});
|
|
9608
9609
|
delete this.formate.uploadInProgress[uid];
|
|
9609
9610
|
this.emitValue();
|
|
@@ -29478,7 +29479,7 @@ class FrequencyResponsibilityListComponent {
|
|
|
29478
29479
|
return {
|
|
29479
29480
|
id: item.id,
|
|
29480
29481
|
title: item.title,
|
|
29481
|
-
controlId: item?.controlId ? '[CID-' +
|
|
29482
|
+
controlId: item?.controlId ? '[CID-' + item?.controlId + '] ' : '',
|
|
29482
29483
|
assigneeDetails,
|
|
29483
29484
|
allAssignee,
|
|
29484
29485
|
allRc
|
|
@@ -32955,6 +32956,7 @@ class WorkflowComplianceComponent {
|
|
|
32955
32956
|
filePath: files.filepath,
|
|
32956
32957
|
name: files.file_name,
|
|
32957
32958
|
type: files.type,
|
|
32959
|
+
fid: files?.fid
|
|
32958
32960
|
};
|
|
32959
32961
|
}) ?? [];
|
|
32960
32962
|
this.responsibilityForm.formatAndEvidence.formatLinks =
|