1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-16 01:21:48 +01: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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