From fb53322d4017f8c18f68c0c566003e9e7d120fef Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 4 Feb 2021 20:48:07 +0100 Subject: [PATCH] Change the name of the newly created bucket from "New Bucket" to "Backlog" --- pkg/models/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/list.go b/pkg/models/list.go index 6d65af10da..a50a993b0b 100644 --- a/pkg/models/list.go +++ b/pkg/models/list.go @@ -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 {