1
0

fix(kanban): remove leftovers of kanban_position property

This might fix a bug where the kanban position would not be saved correctly.
This commit is contained in:
kolaente
2024-06-06 16:22:51 +02:00
parent e7041f02d0
commit 0c411fd1e9
4 changed files with 6 additions and 8 deletions

View File

@ -5,7 +5,7 @@ import type {ITask} from '@/modelTypes/ITask'
import BucketModel from '@/models/bucket'
export interface TaskFilterParams {
sort_by: ('start_date' | 'end_date' | 'due_date' | 'done' | 'id' | 'position' | 'kanban_position')[],
sort_by: ('start_date' | 'end_date' | 'due_date' | 'done' | 'id' | 'position')[],
order_by: ('asc' | 'desc')[],
filter: string,
filter_include_nulls: boolean,