Skip to content

Commit

Permalink
chor: sort filters
Browse files Browse the repository at this point in the history
  • Loading branch information
AKharytonchyk committed Jan 15, 2025
1 parent b081e02 commit 6095741
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Dashboard/PullRequestFilters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export const PullRequestFilters: React.FC<PullRequestFiltersProps> = ({
});

return {
authors: Array.from(data.authors),
reviewers: Array.from(data.reviewers),
assignees: Array.from(data.assignees),
repositories: Array.from(data.repositories),
authors: Array.from(data.authors).sort(),
reviewers: Array.from(data.reviewers).sort(),
assignees: Array.from(data.assignees).sort(),
repositories: Array.from(data.repositories).sort(),
labels: Array.from(data.labels),
titles: Array.from(data.title),
includeLabels: [],
Expand Down

0 comments on commit 6095741

Please sign in to comment.