From 8e32d099c47f1db8a1413e9f6ef027b48a8136a1 Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 13 Sep 2024 11:52:44 +0200 Subject: [PATCH] fix(kanban): do not mark first bucked as done bucket in filter bucket mode Resolves https://github.com/go-vikunja/vikunja/issues/313 (cherry picked from commit 1a8f12ac137f20745895a5c3b828683324b82dc4) --- frontend/src/components/project/views/ProjectKanban.vue | 2 +- pkg/models/project_view.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/project/views/ProjectKanban.vue b/frontend/src/components/project/views/ProjectKanban.vue index cdd05d401..dc3a7c253 100644 --- a/frontend/src/components/project/views/ProjectKanban.vue +++ b/frontend/src/components/project/views/ProjectKanban.vue @@ -41,7 +41,7 @@ @click="() => unCollapseBucket(bucket)" > diff --git a/pkg/models/project_view.go b/pkg/models/project_view.go index 2f28a1142..b2e5ba8ef 100644 --- a/pkg/models/project_view.go +++ b/pkg/models/project_view.go @@ -115,8 +115,8 @@ func (p *BucketConfigurationModeKind) UnmarshalJSON(bytes []byte) error { } type ProjectViewBucketConfiguration struct { - Title string - Filter string + Title string `json:"title"` + Filter string `json:"filter"` } type ProjectView struct {