I'm using the jira-client module for my react app and trying to find specific issues using the searchJira method.
However, any paramter I pass to the function, either a JQL or an optional object, is ignored by the function. Therefore it returns all the issues from the jira boards.
Here is a snippet of my code:
jira.jiraSearch("components=mySearchString")
.then(res => {
console.log(res)
})
.catch(err => {
console.log(err)
});
Am I missing something? This should be the right syntax, no?
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.