Change the name of the newly created bucket from "New Bucket" to "Backlog"

This commit is contained in:
kolaente 2021-02-04 20:48:07 +01:00
parent 55f9106c9e
commit fb53322d40
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ func (l *List) Create(s *xorm.Session, a web.Auth) (err error) {
// Create a new first bucket for this list
b := &Bucket{
ListID: l.ID,
Title: "New Bucket",
Title: "Backlog",
}
err = b.Create(s, a)
if err != nil {