vcomply-workflow-engine 3.8.6 → 3.8.8
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/workflow-policy/workflow-policy.component.mjs +3 -2
- package/esm2022/lib/workflow-risk/workflow-risk.component.mjs +2 -1
- package/fesm2022/vcomply-workflow-engine.mjs +3 -1
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/add-multiple-risk/add-multiple-risk.component.d.ts +1 -1
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12387,6 +12387,7 @@ class WorkflowRiskComponent {
|
|
|
12387
12387
|
};
|
|
12388
12388
|
this.frequencyPlaceholder = 'Set a Reassessment Frequency';
|
|
12389
12389
|
this.populateOptionalFields();
|
|
12390
|
+
this.addCurrentUser();
|
|
12390
12391
|
this.getOwnersList();
|
|
12391
12392
|
}
|
|
12392
12393
|
action(event) {
|
|
@@ -30315,6 +30316,7 @@ class WorkflowPolicyComponent {
|
|
|
30315
30316
|
}
|
|
30316
30317
|
ngOnInit() {
|
|
30317
30318
|
this._initiateAPI();
|
|
30319
|
+
this.overseerGroupList();
|
|
30318
30320
|
}
|
|
30319
30321
|
_initiateAPI() {
|
|
30320
30322
|
this.groupEnabled =
|
|
@@ -31335,7 +31337,7 @@ class WorkflowPolicyComponent {
|
|
|
31335
31337
|
is_suggetion_enable: policy.acceptSuggestions ? 1 : 0,
|
|
31336
31338
|
category_id_arr: this.returnIds(policy.selectedCategories, 'item_id'),
|
|
31337
31339
|
approvers: approversData,
|
|
31338
|
-
assignee_ids: this.returnIds(policy?.selectedAssignees, 'employee_id').map(id => Number(id)),
|
|
31340
|
+
assignee_ids: this.returnIds(policy?.selectedAssignees, 'employee_id').map((id) => Number(id)),
|
|
31339
31341
|
usergroup_ids: this.returnIds(policy.selectedGroupAssignee, '_id') ?? [],
|
|
31340
31342
|
Is_approval: 0,
|
|
31341
31343
|
associated_documents: policy.addAssociatedDocuments
|