It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
For some reason it seems that the conditional statements are not working correctly to hide UI elements. I love the features these fragments can provide but changes I make seem to always take place globally. currently I am using:
!jiraHelper.project?.key == "EDCO"
to try and have it show only projects other then issue key EDCO. I've tried both with and without the "not" in from of the statement and the results are always the same. Are there any examples of how to better utilize this? Another state ment I've tried that doesn't seem to work is:
issue.issueType == "Milestone"
Maybe there is some core thing I'm missing with conditional statements for use of these web fragments.
Your first condition should be:
jiraHelper.project?.key != "EDCO"
It will then show for all projects apart from the project with key EDCO
Similarly the second condition needs to be:
issue.issueType.name == "Milestone"
It will then show for only issues that are of type Milestone.
If the condition is true then the UI element will be displayed.
Steven - yes, you can find the javadoc at https://developer.atlassian.com/static/javadoc/jira/latest/reference/com/atlassian/jira/issue/issuetype/IssueType.html.
It's helpful to execute the conditions and "log.warn()" the return values, so you can see this.
For your first one you could have written :
! (jiraHelper.project?.key == "EDCO")
but the way Adam demonstrated is more usual.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.