how to view all 'hidden items' on github issue page? #128155
Unanswered
comfortablemilk4454
asked this question in
New to GitHub
Replies: 3 comments 5 replies
-
|
Hm, I don't know, if there is a dedicated feature from GitHub to do this, but the following workaround worked for me. Open the developer tools and run the following function in the console: (function clickLoadMoreButtons() {
let loadMoreButton = document.querySelector('.ajax-pagination-btn');
if (loadMoreButton) {
loadMoreButton.click();
setTimeout(clickLoadMoreButtons, 1000); // Adjust timeout as needed
}
})(); |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
thanks for the code :) |
Beta Was this translation helpful? Give feedback.
3 replies
-
|
You can a code lookup here: https://github.com/ludios/expand-everything |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
does anyone know how to expand all of the 1,317 hidden items on a github issue page? if i left click it it only expands a few more and id have to click like 100 times to see the whole conversation. trying to read through a recent message but it's one of the hidden ones. please refer to the screenshot.

the link to the issue page i experience this on is uBlockOrigin/uAssets#20586.
my system information:
MacBook Pro 14" (early 2023, M2 pro apple silicon chip, 16g ram, 1tb storage)
macOS 15.0 Beta (24A5264n)
Brave Browser Version 1.66.118 Chromium: 125.0.6422.147 (Official Build) (arm64)
thanks so much in advance!
Beta Was this translation helpful? Give feedback.
All reactions