I'm looking to include a Jira smart value to present an issue key but with a hyperlink to the issue.
For example if the issue key is ATP-63 then I want to see this in blue with a hyperlink so that I can click onto it and go straight to the issue.
I don't want to see the whole URL to the issue but just the issue key that I can click on to get to the issue.
Hope this makes sense :)
Hi, @Ali Demir
Try the following.
<a href="{{issue.url}}">{{issue.key}}</a>
Hello @Ali Demir
Welcome to the Community !
You can directly use {{issue.url}} - JIRA will automatically convert url into Issue key + Summary
Else, you can <a href="{{issue.url}}">{{issue.key}}</a>; which is same as above.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.