vcomply-workflow-engine 6.0.97 → 6.0.98

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.
@@ -45512,9 +45512,7 @@ class WorkflowProgramComponent {
45512
45512
  let selectedOwner = this.controls?.program_owners?.value?.map((ele) => ele.member_id);
45513
45513
  let disableCollaborator = this.lists?.COLLABORATORS?.data?.filter((user) => selectedOwner?.includes(user?.member_id));
45514
45514
  const selectedCollaborator = this.controls?.program_collaborator?.value?.filter((ele) => !selectedOwner.includes(ele.member_id));
45515
- console.log("selectedCollaborator", selectedCollaborator);
45516
- this.disableCollaboratorIds = this.returnIds(disableCollaborator, 'member_id') ?? [];
45517
- this.setFormField('program_collaborator', selectedCollaborator);
45515
+ this.listAction({ users: selectedCollaborator }, 'COLLABORATOR');
45518
45516
  }
45519
45517
  removeRole(evt) {
45520
45518
  this.onRemovingRole.emit(evt);
@@ -45661,8 +45659,8 @@ class WorkflowProgramComponent {
45661
45659
  this.setFormField('program_roles', defaultVal);
45662
45660
  this.fetchUsersAssociatedWithRoles();
45663
45661
  this.fetchGroupsAssociatedWithRoles();
45664
- this.fetchUserWithManageProgramsRole();
45665
45662
  }
45663
+ this.fetchUserWithManageProgramsRole();
45666
45664
  },
45667
45665
  error: (err) => { },
45668
45666
  });