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:
parent
dac23db952
commit
196c1e1fa4
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user