We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58d15a8 commit 8dbc8e9Copy full SHA for 8dbc8e9
models/project/issue.go
@@ -78,7 +78,7 @@ func (p *Project) NumOpenIssues() int {
78
79
// MoveIssuesOnProjectBoard moves or keeps issues in a column and sorts them inside that column
80
func MoveIssuesOnProjectBoard(board *Board, sortedIssueIDs map[int64]int64) error {
81
- return db.WithTx(db.DefaultContext,func(ctx context.Context) error {
+ return db.WithTx(db.DefaultContext, func(ctx context.Context) error {
82
sess := db.GetEngine(ctx)
83
84
issueIDs := make([]int64, 0, len(sortedIssueIDs))
0 commit comments