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.
- package/bundles/nuxeo-development-framework.umd.js +2 -1
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.js +3 -2
- package/esm2015/lib/components/spell-checker-field/spell-checker-field.module.js +1 -1
- package/fesm2015/nuxeo-development-framework.js +2 -1
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
}
|