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:
parent
19a1dc9daf
commit
8e32d099c4
@ -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"
|
||||||
>
|
>
|
||||||
|
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user