The space on the Kanban board is so large that can't see it all. The title and information below are important, so I need them, and I want to reduce the size of the kanban by deleting the issue type, priority, and number parts.
Can I delete issue type, priority, number on Kanban board?
This is what I've come up with so far
def subtasks = 0
for (i in issue.getSubTaskObjects()){
if (i.getStatus().getName() != "Closed")
subtasks += 1
}
return subtasks
Hi Connor,
here your code :
import java.util.Collection;
import com.atlassian.jira.issue.Issue;
Issue issue = issue;
Collection<Issue> subTasks = issue.getSubTaskObjects();
int count = 0;
for(Issue is : subTasks){
if(!is.getStatus().getName().equalsIgnoreCase("YOUR_STATUS_NAME_HERE"))
count++;
}
return count;
Hope this helps,
Ciao,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.