From 0e32d478d19a8d69e78ee7cfbeae827a099ff422 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 3 Sep 2023 15:50:47 +0200 Subject: [PATCH] fix(projects): save done and default bucket when updating project --- pkg/models/project.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/models/project.go b/pkg/models/project.go index 353221146..b13f7f72d 100644 --- a/pkg/models/project.go +++ b/pkg/models/project.go @@ -783,6 +783,8 @@ func UpdateProject(s *xorm.Session, project *Project, auth web.Auth, updateProje "hex_color", "parent_project_id", "position", + "done_bucket_id", + "default_bucket_id", } if project.Description != "" { colsToUpdate = append(colsToUpdate, "description")