-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Low
-
None
-
Affects Version/s: 8.20.0
-
Component/s: (Advanced Roadmaps) Plan - Teams
-
8.2
-
3
-
Severity 3 - Minor
Issue Summary
When managing shared teams, only up to 50 results are shown at a time. There is no way to show more results. If there are too many teams with similar names, users may not be able to find their team.
Steps to Reproduce
- Generate many shared teams with similar names
- For example, in my case, I generated 100 teams starting with the letter "c", like c1234, cabd, etc.
- Rename a group to the single letter "c"
- Now attempt to search for the "c" team
Expected Results
- Exact matches are prioritized and shown
- There is an option to show more results if the initial displayed results do not match
Actual Results
- There are limited results show, in what looks to be a random order (maybe this is by internal ID)
- User is unable to find the team they want.
Workaround
User REST api to search for the teams and increase the maxResult limit to a higher value:
curl -u admin:admin -X POST --data '{query: "c",maxResults: 1000}' -H "Content-Type: application/json" 'http://localhost:8080/jira851/rest/teams/1.0/teams/find'
To avoid the problem in the future, update the team to something more unique:
curl -u admin:admin -X POST --data '{title: "c123456"}' -H "Content-Type: application/json" 'http://localhost:8080/jira851/rest/teams/1.0/teams/4/update'
- links to
- was cloned as
-
JPO-14522 Loading...