mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 21:43:24 -07:00
Fixed wrong Jira field selection.
This commit is contained in:
parent
34899c2f0c
commit
3b58f61a0d
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ namespace GreenshotJiraPlugin.Forms {
|
|||
IList<Issue> issues = null;
|
||||
try
|
||||
{
|
||||
var searchResult = await _jiraConnector.SearchAsync(filter.Jql, fields: new [] { "summary,reporter,assignee,created"});
|
||||
var searchResult = await _jiraConnector.SearchAsync(filter.Jql, fields: new [] { "summary", "reporter", "assignee", "created" });
|
||||
issues = searchResult.Issues;
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue