Last active
September 8, 2021 07:49
-
-
Save kenu/a98f27cce0f3c34187acf0966538c306 to your computer and use it in GitHub Desktop.
Hide lines of issue with `Bump` keyword.
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
* Hide line of issues with `Bump` keyword. | |
* Use this code in console of GitHub issue list page. | |
```js | |
const issues = document.querySelectorAll('.js-issue-row'); | |
[...issues].forEach((issue, idx) => { | |
issues[idx].hidden = issue.innerText.includes('Bump'); | |
}); | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment