You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
active_sprint_query="project = '%s' AND sprint in openSprints() ORDER BY Rank ASC",
31
33
queries= {
32
34
["Next sprint"] ="project = '%s' AND sprint in futureSprints() ORDER BY Rank ASC",
33
35
["Backlog"] ="project = '%s' AND (issuetype IN standardIssueTypes() OR issuetype = Sub-task) AND (sprint IS EMPTY OR sprint NOT IN openSprints()) AND statusCategory != Done ORDER BY Rank ASC",
@@ -137,7 +137,8 @@ function M.get_backlog_issues(project, callback)
137
137
return
138
138
end
139
139
140
-
localjql= ("project = '%s' AND (sprint is EMPTY OR sprint not in openSprints()) AND issuetype not in (Epic) AND statusCategory != Done ORDER BY Rank ASC"):format(
140
+
localjql= ("project = '%s' AND (sprint is EMPTY OR sprint not in openSprints()) AND issuetype not in (Epic) AND statusCategory != Done ORDER BY Rank ASC")
0 commit comments