Skip to content

Commit

Permalink
fix: update medium activity threshold for repositories (#1251)
Browse files Browse the repository at this point in the history
Closes #1224
  • Loading branch information
brandonroberts committed Jun 6, 2023
1 parent 5b7d331 commit 4730533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/molecules/RepoRow/repo-row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const getActivity = (total?: number, loading?: boolean) => {
return <Pill icon={<ArrowTrendingUpIcon color="green" className="w-4 h-4" />} text="High" color="green" />;
}

if (total >= 20 && total <= 80) {
if (total >= 5 && total <= 80) {
return <Pill icon={<MinusSmallIcon color="black" className="w-4 h-4" />} text="Medium" color="yellow" />;
}

Expand Down

0 comments on commit 4730533

Please sign in to comment.