HI,
i have created a plugin which will be part of the Issue Detail page. i would like to control the visibility of UI of my custom plugin based on the issue type. for example the plugin should be visible only if the issue type is "Bug" and should be hidden for other issue types. is there a possiblity of implemeting it in JIRA?
any help would be appreciated.
You can make a condition on the start of you .vm file
#if ($issue.issueType.name == "Bug")
And the plugin will only be showed if it's the correct issue type
Best regards,
Pedro Felgueiras
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
I guess, you made a web panel. You should add a condition class to this web panel.
https://developer.atlassian.com/server/jira/platform/web-panel/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.