Last active
April 2, 2021 10:21
-
-
Save lnksz/c0a04859450200fcc9a5a26b813adb0a to your computer and use it in GitHub Desktop.
Hide "done" tickets in an epic. (Jira server only)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var rs = document.getElementsByClassName("issuerow"); | |
for (let i = 0; i < rs.length; i++) | |
if (rs[i].firstElementChild.firstElementChild) | |
rs[i].hidden = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works by executing this in the browser's console, or by using a user script addon, like Greasemonkey.