Skip to content

Commit

Permalink
🐛 fix layout
Browse files Browse the repository at this point in the history
  • Loading branch information
maxam2017 committed May 10, 2020
1 parent 8b4b9b6 commit b5d1dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ interface IRepo {
const lines = oneDay.reduce((prev, cur) => {
const percent = cur.commits / sum * 100;
const line = [
`${cur.label}`.padEnd(9),
`${cur.label}`.padEnd(10),
`${cur.commits.toString().padStart(5)} commits`.padEnd(14),
generateBarChart(percent, 21),
String(percent.toFixed(1)).padStart(5) + '%',
Expand Down

0 comments on commit b5d1dde

Please sign in to comment.