Skip to content

Commit

Permalink
fix: full_name error issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AKharytonchyk committed Jan 15, 2025
1 parent c884217 commit b081e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Dashboard/PullRequestFilters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const PullRequestFilters: React.FC<PullRequestFiltersProps> = ({
pr.requested_reviewers.forEach((r) => data.reviewers.add(r.login));
if (pr.assignee) data.assignees.add((pr.assignee as any).login);
pr.assignees?.forEach((a) => data.assignees.add(a.login));
data.repositories.add(pr.head.repo.full_name);
if (pr.head.repo) data.repositories.add(pr.head.repo.full_name);
pr.labels.forEach((l) => data.labels.add(l.name));
data.title.add(pr.title);
});
Expand Down

0 comments on commit b081e02

Please sign in to comment.