How do I search for only components that have a Lead of a specific person?

Susan Price September 10, 2016

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?

1 answer

1 vote
Walter Buggenhout
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 28, 2016

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)

Suggest an answer

Log in or Sign up to answer