diff --git a/frontend/src/app/dashboard/component/user/user-workflow/user-workflow.component.ts b/frontend/src/app/dashboard/component/user/user-workflow/user-workflow.component.ts index 75f61a223ce..8986aaef59e 100644 --- a/frontend/src/app/dashboard/component/user/user-workflow/user-workflow.component.ts +++ b/frontend/src/app/dashboard/component/user/user-workflow/user-workflow.component.ts @@ -308,6 +308,9 @@ export class UserWorkflowComponent implements AfterViewInit { entry.setOwnerName(userInfo.userName); entry.setOwnerGoogleAvatar(userInfo.googleAvatar ?? ""); } + if (this.currentUid !== undefined) { + entry.setAccessUsers([this.currentUid]); + } return entry; });