Skip to content

Commit f929097

Browse files
committedDec 29, 2017
Fixes alignment issue.
Signed-off-by: Eric Wang <skygragon@gmail.com>
·
2.6.72.4.0
1 parent 2a0c926 commit f929097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/commands/stat.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function showGraph(problems) {
116116
// padding before group
117117
if (i % 10 === 1) line.push(' ');
118118

119-
line.push(graph[i] || ' ');
119+
line.push(graph[i] || ' ');
120120

121121
// time to start new row
122122
if (i % (10 * groups) === 0 || i === n) {

0 commit comments

Comments
 (0)
Please sign in to comment.