I am creating a new dashboard using a copy from an already existing board, how can I change the assignees?
I would like to be able to see 'only' the persons I need from my team
They say “better late than never.”
I just solved the same problem: the thing is that the JQL query for the board does not limit the Assigned to cards that can be displayed on the board.
In my case, the filter
```
assignee IN (user1, user2, user3) OR project = DEVOPS OR labels in ('DevOps') ORDER BY priority, duedate, created DESC
```
had to be changed to
```
assignee IN (user1, user2, user3, EMPTY) AND (project = DEVOPS OR labels in ('DevOps')) ORDER BY priority, duedate, created DESC
```
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.