1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

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

This commit is contained in:
Rui Tomé
2025-01-03 20:36:43 +00:00
committed by GitHub
parent dac23db952
commit 196c1e1fa4

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) {