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.
Trying to add a duplicate button to quick edit an issue when looking at the agile sprint board except any web-item I add shows up as a dropdown instead of a button as shown in the pic below,
Below is my setup for the custom web-item
How can I fix this?
For anyone interested in reusing a core part of Jira,
this may be helpful,
First create a custom web section
Next, create a js file so scriptrunner can install it as a web resource,
(function ($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (event, $context, reason){
var element = document.getElementById('edit-issue-shortcut-button-button');
if (typeof(element) != 'undefined' && element != null) {
element.className = "aui-button ghx-actions-tools js-issueaction issueaction-edit-issue";
}
});
})(AJS.$);
As you'll notice I'm simply updating the className of the button we created earlier, I found this by inspecting the edit issue menu item,
Finally, install your web resource,
Now we can see the Edit Issue button on the agile boards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.