This question is in reference to Atlassian Documentation: Viewing a project's components
How do I search for only components that have a Lead of a specific person?
Hi Susan,
Components are specific to each individual JIRA project. The list of components inside a project is usually not too extensive. If you navigate to the Components list of your project, the Component Lead is shown next to the component lead.
If you want to search for issues having a component lead by a specific person (e.g. to create a list of issues on a dashboard), you can do so with this neat JQL function:
Component in componentsLeadByUser()
If you use it like that, it will show all issues with a component having the Current User (i.e. the user currently logged into JIRA), what makes it generic. If you want to make it specific to a given user, you can specify a username between the brackets like this:
Component in componentsLeadByUser(Susan.Price)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.