-
The same issue might exist for backlog base query when using the "show issues in list" icon on the backlog lane.
-
OneDev
changed state to 'Closed' 3 years ago
Previous Value Current Value Open
Closed
-
OneDev
changed state to 'Released' 3 years ago
Previous Value Current Value Closed
Released
-
State changed as build #2956 is successful
| Type |
Bug
|
| Priority |
Normal
|
| Assignee | |
| Affected Versions |
Not Found
|
Issue Votes (0)
In board view each lane has a small icon "show issues in list" in the top right corner. When clicking it OneDev jumps into the issue list UI and applies a issue filter that should match the board lane issues.
The generated issue filter is like
<base query> AND <selected milestone> AND <field that represents the board lane, e.g. state is "xx"> <order by clause from base query>The issue is that my
base queryhas anORcondition in it and that the generated issue filter does not put the base query into braces.So instead of
<base query> AND <selected milestone> AND <field that represents the board lane, e.g. state is "xx"> <order by clause from base query>it should be
(<base query>) AND <selected milestone> AND <field that represents the board lane, e.g. state is "xx"> <order by clause from base query>