mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +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:
@@ -131,7 +131,9 @@ export class EventsComponent extends BaseEventsComponent implements OnInit, OnDe
|
|||||||
|
|
||||||
protected getUserName(r: EventResponse, userId: string) {
|
protected getUserName(r: EventResponse, userId: string) {
|
||||||
if (r.installationId != null) {
|
if (r.installationId != null) {
|
||||||
return `Installation: ${r.installationId}`;
|
return {
|
||||||
|
name: `Installation: ${r.installationId}`,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (userId != null) {
|
if (userId != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user