Skip to content

Commit 8dbc8e9

Browse files
committed
Fix lint
1 parent 58d15a8 commit 8dbc8e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/project/issue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func (p *Project) NumOpenIssues() int {
7878

7979
// MoveIssuesOnProjectBoard moves or keeps issues in a column and sorts them inside that column
8080
func MoveIssuesOnProjectBoard(board *Board, sortedIssueIDs map[int64]int64) error {
81-
return db.WithTx(db.DefaultContext,func(ctx context.Context) error {
81+
return db.WithTx(db.DefaultContext, func(ctx context.Context) error {
8282
sess := db.GetEngine(ctx)
8383

8484
issueIDs := make([]int64, 0, len(sortedIssueIDs))

0 commit comments

Comments
 (0)