Skip to content

Instantly share code, notes, and snippets.

@lnksz
Last active April 2, 2021 10:21
Show Gist options
  • Save lnksz/c0a04859450200fcc9a5a26b813adb0a to your computer and use it in GitHub Desktop.
Save lnksz/c0a04859450200fcc9a5a26b813adb0a to your computer and use it in GitHub Desktop.
Hide "done" tickets in an epic. (Jira server only)
var rs = document.getElementsByClassName("issuerow");
for (let i = 0; i < rs.length; i++)
if (rs[i].firstElementChild.firstElementChild)
rs[i].hidden = true;
@lnksz
Copy link
Author

lnksz commented Apr 2, 2021

Works by executing this in the browser's console, or by using a user script addon, like Greasemonkey.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment