Skip to content

Commit 056a0d6

Browse files
committed
fix exporting issues: output to correct row
1 parent 56d2535 commit 056a0d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/export/excel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func IssuesToExcel(ctx *context.Context, issues issues_model.IssueList) *exceliz
7373
}
7474
}
7575

76-
cell, _ := excelize.CoordinatesToCellName(1, i+1)
76+
cell, _ := excelize.CoordinatesToCellName(1, i+2)
7777
err = sw.SetRow(cell, []any{
7878
excelize.Cell{Value: issue.Index},
7979
excelize.Cell{Value: issue.Title},

0 commit comments

Comments
 (0)