1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

fix: Fix filtering by task assignees

This commit is contained in:
Maksim Eltyshev 2025-06-17 16:00:37 +02:00
parent c8cb1f4a20
commit 6988864808
3 changed files with 20 additions and 8 deletions

View file

@ -292,7 +292,7 @@ export default class extends BaseModel {
taskListModel
.getTasksQuerySet()
.toRefArray()
.some((task) => filterUserIds.includes(task.assigneeUserId)),
.some((task) => task.assigneeUserId && filterUserIds.includes(task.assigneeUserId)),
);
});
}