vcomply-workflow-engine 7.0.1 → 7.0.2

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.
@@ -39573,10 +39573,10 @@ class WorkflowPolicyComponent {
39573
39573
  (this.policyForm.policyName = data.policy_name),
39574
39574
  (this.policyForm.policyNotes = data.notes),
39575
39575
  (this.policyForm.customTags = data.custom_tags ? data.custom_tags : []);
39576
- this.policyForm.selectedAssignees =
39576
+ this.policyForm.selectedAssignees = (!data?.selectedAllAttestors || data?.selectedAllAttestors == 0) &&
39577
39577
  group_employeeIds.length > 0
39578
- ? this.setList(this.assigneesList, group_employeeIds, 'my_member_id')
39579
- : []; //doubt in name
39578
+ ? this.setList(this.assigneesList, group_employeeIds, 'my_member_id')
39579
+ : []; //doubt in name
39580
39580
  this.policyForm.selectedGroupAssignee =
39581
39581
  group_Ids?.length > 0
39582
39582
  ? this.setList(this.overseerGroupsList, group_Ids, '_id')