Skip to content

Commit

Permalink
[release] v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vn7n24fzkq committed Oct 6, 2020
1 parent 76b5289 commit a302770
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46230,7 +46230,7 @@ function createDetailCard(title, userDetails, contributionsData, theme) {
var xAxis_woy = d3
.axisBottom(x)
.tickFormat(d3.timeFormat("%y/%m"))
.tickValues(lineChartData.map((d) => d.date));
.tickValues(lineChartData.map((data,index) => {if(index%2==0) return data.date; else return null;}));

chartPanel
.append("g")
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-profile-summary-cards",
"version": "0.2.4",
"version": "0.2.5",
"description": "Generate github profile summary cards",
"main": "src/app.js",
"scripts": {
Expand Down

0 comments on commit a302770

Please sign in to comment.