nuxeo-development-framework 5.5.4 → 5.5.5

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.
@@ -12337,8 +12337,9 @@
12337
12337
  };
12338
12338
  DynamicFormSelectUsersComponent.prototype.ngOnInit = function () {
12339
12339
  var _this = this;
12340
+ var _a;
12340
12341
  this.allUsers = this.deptTitle === 'all' ? true : false;
12341
- this.selection = this.multiple ? [] : undefined;
12342
+ this.selection = (_a = this.selection) !== null && _a !== void 0 ? _a : (this.multiple ? [] : undefined);
12342
12343
  if (this.allUsers) {
12343
12344
  this.loadUsers();
12344
12345
  }