You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
The "Show in Issue Navigator" option in R4J does not handle special characters properly.
Here's an example.
I have a requirements tree path that looks like "Foo&Bar/Framus". When I right click it and select "Show in Issue Navigator", the issue search JQL generated is:
issue in requirementsPath("\"Foo&Bar\"/Framus")
Jira doesn't like this at all. It says:
Invalid project name received in the path. Please submit with the valid project name.
I have to manually edit out all of the escapes, and then the following JQL actually works correctly:
issue in requirementsPath("Foo&Bar/Framus")
So all of the escapes are not only unnecessary, they are actually in error. Every time I use this feature on my project I have to hand-edit the JQL to fix it. Pretty annoying.