diff --git a/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts b/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts index abd4323abf..6e3e8fd796 100644 --- a/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts +++ b/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts @@ -140,6 +140,7 @@ export class ContentNodeDialogService { const data: ContentNodeSelectorComponentData = { title: this.getTitleTranslation(action, contentEntry.name), actionName: action, + selectionMode: 'single', currentFolderId: contentEntry.parentId, imageResolver: this.imageResolver.bind(this), where: '(isFolder=true)', @@ -182,6 +183,7 @@ export class ContentNodeDialogService { const data: ContentNodeSelectorComponentData = { title: this.getTitleTranslation(action, this.translation.instant('DROPDOWN.MY_FILES_OPTION')), actionName: action, + selectionMode: 'single', currentFolderId: contentEntry.id, imageResolver: this.imageResolver.bind(this), isSelectionValid: this.hasAllowableOperationsOnNodeFolder.bind(this), @@ -209,6 +211,7 @@ export class ContentNodeDialogService { const data: ContentNodeSelectorComponentData = { title: this.getTitleTranslation(action, this.translation.instant('DROPDOWN.MY_FILES_OPTION')), actionName: action, + selectionMode: 'single', currentFolderId: contentEntry.id, imageResolver: this.imageResolver.bind(this), isSelectionValid: (entry: Node) => entry.isFile, diff --git a/lib/testing/src/lib/core/actions/users.actions.ts b/lib/testing/src/lib/core/actions/users.actions.ts index 465fc5bc13..9075f14ddb 100644 --- a/lib/testing/src/lib/core/actions/users.actions.ts +++ b/lib/testing/src/lib/core/actions/users.actions.ts @@ -44,7 +44,7 @@ export class UsersActions { try { if (this.api.apiService.isEcmConfiguration() || (this.api.apiService.isEcmBpmConfiguration())) { - Logger.log('Create user ECM'); + Logger.log(`Create user ECM ${user.email}`); await this.api.apiService.core.peopleApi.addPerson({ id: user.email, email: user.email,