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:
parent
c8cb1f4a20
commit
6988864808
3 changed files with 20 additions and 8 deletions
|
@ -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)),
|
||||
);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue