Skip to content

Commit

Permalink
fix: adjust contributor distribution chart yscale max height (#1329)
Browse files Browse the repository at this point in the history
  • Loading branch information
babblebey committed Jul 6, 2023
1 parent 77194b2 commit 0c6b176
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const NivoScatterPlot = ({
yScale={{
type: isLogarithmic ? "symlog" : "linear",
min: 0,
max: Math.max(Math.round(maxFilesModified * 3), 10),
max: Math.max(Math.round(maxFilesModified * 1.5), 10),
}}
blendMode="normal"
useMesh={false}
Expand Down

0 comments on commit 0c6b176

Please sign in to comment.