vcomply-workflow-engine 2.3.21 → 2.3.22
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/bundles/vcomply-workflow-engine.umd.js +2 -2
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +3 -3
- package/fesm2015/vcomply-workflow-engine.js +2 -2
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/package.json +1 -1
|
@@ -2715,15 +2715,15 @@ class WorkflowComplianceComponent {
|
|
|
2715
2715
|
const reviewers = this.reviewersList.filter((element) => this.responsibilityForm.program[0].default_reviewers.includes(element.my_member_id));
|
|
2716
2716
|
if (reviewers.length) {
|
|
2717
2717
|
this.responsibilityForm.reviewers.list = reviewers;
|
|
2718
|
+
this.moreOptions.REVIEWER = true;
|
|
2718
2719
|
}
|
|
2719
|
-
this.moreOptions.REVIEWER = true;
|
|
2720
2720
|
}
|
|
2721
2721
|
if (this.responsibilityForm.program[0].default_overseers) {
|
|
2722
2722
|
const overseers = this.assigneesList.filter((element) => this.responsibilityForm.program[0].default_overseers.cc_email.includes(element.my_member_id));
|
|
2723
2723
|
if (overseers.length) {
|
|
2724
2724
|
this.responsibilityForm.overseers.list = overseers;
|
|
2725
|
+
this.moreOptions.OVERSEER = true;
|
|
2725
2726
|
}
|
|
2726
|
-
this.moreOptions.OVERSEER = true;
|
|
2727
2727
|
}
|
|
2728
2728
|
for (const key in this.moreOptions) {
|
|
2729
2729
|
if (this.moreOptions[key]) {
|