diff --git a/plugins/task-resources/src/components/kanban/KanbanView.svelte b/plugins/task-resources/src/components/kanban/KanbanView.svelte index dd49dd8917b..2b9d3d1951e 100644 --- a/plugins/task-resources/src/components/kanban/KanbanView.svelte +++ b/plugins/task-resources/src/components/kanban/KanbanView.svelte @@ -218,7 +218,7 @@ if (groupValue === undefined) { return undefined } - if ((doc as any)[groupByKey] === groupValue) { + if ((doc as any)[groupByKey] === groupValue && viewOptions.orderBy[0] !== 'rank') { return } return { diff --git a/plugins/tracker-resources/src/components/issues/KanbanView.svelte b/plugins/tracker-resources/src/components/issues/KanbanView.svelte index 5060424838b..55ee93528a7 100644 --- a/plugins/tracker-resources/src/components/issues/KanbanView.svelte +++ b/plugins/tracker-resources/src/components/issues/KanbanView.svelte @@ -242,7 +242,7 @@ if (groupValue === undefined) { return undefined } - if ((doc as any)[groupByKey] === groupValue) { + if ((doc as any)[groupByKey] === groupValue && viewOptions.orderBy[0] !== 'rank') { return } return {