mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-12 13:39:14 +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:
parent
903b5c8d93
commit
3afbb09e7e
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user