vcomply-workflow-engine 2.7.15 → 2.7.17
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 +4 -0
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +5 -1
- package/fesm2015/vcomply-workflow-engine.js +4 -0
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/package.json +1 -1
|
@@ -4083,6 +4083,7 @@
|
|
|
4083
4083
|
if (program_id) {
|
|
4084
4084
|
params = params.append('program_ids', program_id);
|
|
4085
4085
|
}
|
|
4086
|
+
this.userListLoader = true;
|
|
4086
4087
|
this.responsibilityService.getOrganizationPeople(params).subscribe(function (res) {
|
|
4087
4088
|
_this.allUsersList = res.map(function (user) {
|
|
4088
4089
|
user.member_name = user.employee_name;
|
|
@@ -4098,6 +4099,9 @@
|
|
|
4098
4099
|
}, function (err) {
|
|
4099
4100
|
console.error(err);
|
|
4100
4101
|
_this.assigneesListLoaded = true;
|
|
4102
|
+
_this.userListLoader = false;
|
|
4103
|
+
}, function () {
|
|
4104
|
+
_this.userListLoader = false;
|
|
4101
4105
|
});
|
|
4102
4106
|
};
|
|
4103
4107
|
WorkflowComplianceComponent.prototype.getPeopleListAgainstPID = function (program_id) {
|