how to view all 'hidden items' on github issue page? #128155
Replies: 4 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.
-
|
thanks for the code :) |
Beta Was this translation helpful? Give feedback.
-
|
You can a code lookup here: https://github.com/ludios/expand-everything |
Beta Was this translation helpful? Give feedback.
-
|
This problem is also present for discussions. I wonder whether anybody is able to follow what is happening on https://github.com/orgs/community/discussions/163932, there are 2.5k comments to expand there.
|
Beta Was this translation helpful? Give feedback.

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