Skip to content

Commit

Permalink
fix cutoff variable
Browse files Browse the repository at this point in the history
CUTOFF variable in code was still set to 100, resulting in codes with
<100 citations not showing up in the statistics page.
  • Loading branch information
ltalirz committed Sep 1, 2024
1 parent 56305fa commit 0dc7eca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import citations from "../data/citations.json";
import codes from "../data/codes.json";

// Citation cutoff
const CUTOFF = 100;
// Citation cutoff per year (~1 citation per week)
const CUTOFF = 50;

function yearToRange(year) {
/**
Expand Down

0 comments on commit 0dc7eca

Please sign in to comment.