sindresorhus/refined-github



The issue has been closed
fix contribution graph's time interval selection #4536
kiprasmel posted onGitHub
Visiting a profile on github and selecting a contribution year for the contribution graph sets the interval in the url query to the current month, or the last month of the given year.
e.g. https://github.com/kiprasmel
2020
: selects https://github.com/kiprasmel?tab=overview&from=2020-12-01&to=2020-12-31 - last month of 2020
2021
(current year): selects https://github.com/kiprasmel?tab=overview&from=2021-07-01&to=2021-07-02 - current month
It seems the expected UX would be to select the whole year?
One would need to change the year selection's <a href
attribute and replace the given start date's month to the first month 01
. I can try creating a PR if we agree on this fix.