1
0

fix(projects): do not create backlog bucket when duplicating views

This commit is contained in:
kolaente
2024-07-17 10:24:03 +02:00
parent 092a65b025
commit 8a6689f4fa

View File

@ -180,7 +180,7 @@ func duplicateViews(s *xorm.Session, pd *ProjectDuplicate, doer web.Auth, taskMa
view.ID = 0
view.ProjectID = pd.Project.ID
err = view.Create(s, doer)
err = createProjectView(s, view, doer, false)
if err != nil {
return
}