diff --git a/backend/src/Squidex/Areas/Api/Controllers/Users/Models/UpdateUserDto.cs b/backend/src/Squidex/Areas/Api/Controllers/Users/Models/UpdateUserDto.cs index 8637135bbc..6edc56dbe8 100644 --- a/backend/src/Squidex/Areas/Api/Controllers/Users/Models/UpdateUserDto.cs +++ b/backend/src/Squidex/Areas/Api/Controllers/Users/Models/UpdateUserDto.cs @@ -42,6 +42,6 @@ public sealed class UpdateUserDto public UserValues ToValues() { - return SimpleMapper.Map(this, new UserValues { Permissions = new PermissionSet(Permissions) }; + return SimpleMapper.Map(this, new UserValues { Permissions = new PermissionSet(Permissions) }); } } diff --git a/frontend/src/app/shared/components/notifo.component.ts b/frontend/src/app/shared/components/notifo.component.ts index c860c4cffc..5448b45744 100644 --- a/frontend/src/app/shared/components/notifo.component.ts +++ b/frontend/src/app/shared/components/notifo.component.ts @@ -59,6 +59,7 @@ export class NotifoComponent implements AfterViewInit, OnDestroy { apiUrl: this.notifoApiUrl, userKey: null, userToken: this.notifoApiKey, + linkTarget: '_blank', }; if (this.notifoApiUrl.includes('localhost:5002')) {