Skip to content

Commit

Permalink
Merge pull request #99 from escottalexander/fix-graph
Browse files Browse the repository at this point in the history
Select the top projects instead of the bottom projects
  • Loading branch information
escottalexander authored Apr 16, 2024
2 parents 89780b9 + f5a7510 commit fa43c75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export default function ImpactVectorGraph({
<ComposedChart
width={500}
height={300}
data={[...transformedData].splice(0, projectsShown)}
data={transformedData.slice(-projectsShown)}
margin={{
top: 5,
right: 30,
Expand Down

0 comments on commit fa43c75

Please sign in to comment.