1
0

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)
This commit is contained in:
kolaente 2024-09-13 11:52:44 +02:00
parent 19a1dc9daf
commit 8e32d099c4
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@
@click="() => unCollapseBucket(bucket)" @click="() => unCollapseBucket(bucket)"
> >
<span <span
v-if="view?.doneBucketId === bucket.id" v-if="bucket.id !== 0 && view?.doneBucketId === bucket.id"
v-tooltip="$t('project.kanban.doneBucketHint')" v-tooltip="$t('project.kanban.doneBucketHint')"
class="icon is-small has-text-success mr-2" class="icon is-small has-text-success mr-2"
> >

View File

@ -115,8 +115,8 @@ func (p *BucketConfigurationModeKind) UnmarshalJSON(bytes []byte) error {
} }
type ProjectViewBucketConfiguration struct { type ProjectViewBucketConfiguration struct {
Title string Title string `json:"title"`
Filter string Filter string `json:"filter"`
} }
type ProjectView struct { type ProjectView struct {