vcomply-workflow-engine 3.8.1 → 3.8.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.
@@ -11877,10 +11877,12 @@ class WorkflowRiskComponent {
11877
11877
  }
11878
11878
  }
11879
11879
  checkWhetherAllListsLoaded() {
11880
+ const editLoader = this.mode === 'EDIT'
11881
+ ? this.usersListLoaded && this.categoryListLoaded
11882
+ : true;
11880
11883
  if (this.rcListLoaded &&
11881
- this.usersListLoaded &&
11882
11884
  this.adminsListLoaded &&
11883
- this.categoryListLoaded) {
11885
+ editLoader) {
11884
11886
  this.setOverseersList();
11885
11887
  if (this.mode === 'EDIT') {
11886
11888
  this.getRiskDetails(this.riskId);