vcomply-workflow-engine 7.3.1 → 7.3.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.
|
@@ -35576,11 +35576,11 @@ class WorkflowComplianceComponent {
|
|
|
35576
35576
|
keyResponsibility: res?.key,
|
|
35577
35577
|
},
|
|
35578
35578
|
assignees: {
|
|
35579
|
-
whoCanComplete: res?.assignee?.type.toLowerCase(),
|
|
35579
|
+
whoCanComplete: res?.assignee?.type.toLowerCase() === 'any' ? 'ANY_ONE' : 'ALL',
|
|
35580
35580
|
list: this.setList(this.assigneesList, res?.assignee?.userId, 'uid'),
|
|
35581
35581
|
},
|
|
35582
35582
|
assigneeGroups: {
|
|
35583
|
-
whoCanComplete: res?.assignee?.type.toLowerCase(),
|
|
35583
|
+
whoCanComplete: res?.assignee?.type.toLowerCase() === 'any' ? 'ANY_ONE' : 'ALL',
|
|
35584
35584
|
list: this.setList(this.groupAssigneeList, res?.assignee?.userGroupId, 'ugid'),
|
|
35585
35585
|
},
|
|
35586
35586
|
allowEditDueDate: res?.allowEditDueDate,
|