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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.