Skip to content

Commit

Permalink
Fix installation ID missing in events by returning an object with the…
Browse files Browse the repository at this point in the history
… 'name' property instead of a string (#12463)
  • Loading branch information
r-tome authored Jan 3, 2025
1 parent dac23db commit 196c1e1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 196c1e1

Please sign in to comment.