1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-03-11 13:30:39 +01:00

Fix installation ID missing in events by returning an object with the 'name' property instead of a string

This commit is contained in:
Rui Tome 2024-12-18 14:43:31 +00:00
parent 903b5c8d93
commit 3afbb09e7e
No known key found for this signature in database
GPG Key ID: 526239D96A8EC066

View File

@ -131,7 +131,9 @@ export class EventsComponent extends BaseEventsComponent implements OnInit, OnDe
protected getUserName(r: EventResponse, userId: string) {
if (r.installationId != null) {
return `Installation: ${r.installationId}`;
return {
name: `Installation: ${r.installationId}`,
};
}
if (userId != null) {