where i should send a feature request ?
via email or on GitHub issue.
You cannot make that “Load more files” control more visible globally (for everyone) from your account settings. That UI is part of Hugging Face’s website. You have two real options:
- Local fix on your browser (make it colored/bigger for you).
- Feature request to Hugging Face (ask them to change the UI for everyone).
Your example repo page clearly contains the subtle “Load more files” row at the bottom of “Files and versions.” (Hugging Face)
Why this happens (background, so it makes sense)
The Hub is optimized for huge repos
The “Files and versions” tab is a web view over a versioned repository (Git-like). The Hub is built to host very large repos and long file trees. (Hugging Face)
Showing thousands of rows at once is expensive for the browser and the server, so the UI uses pagination and “load more” patterns.
You can see the same tradeoff in the official API docs: when “expanded” metadata is requested, it is “more expensive for the server,” so fewer results are returned per page (50 vs 1000), and the library paginates behind the scenes. (Hugging Face)
That is strong evidence that Hugging Face intentionally avoids “render everything immediately.”
Your complaint is valid UX and accessibility-wise
Small, low-contrast click targets are easy to miss and hard to activate. WCAG 2.2 explicitly explains that minimum target sizes help users activate controls reliably and avoid mis-clicks. (W3C)
WCAG also recommends larger targets reduce accidental actions. (W3C)
So your request is not cosmetic. It is discoverability + accessibility.
What you should do (recommended path)
Do these in order. You get an immediate fix today, plus a clean request for a permanent fix.
1) Immediate “no install” tricks (fast)
These do not change the UI, but they make the hidden control easier to find.
A. Use browser Find
- Press Ctrl+F (Windows/Linux) or Cmd+F (Mac)
- Search: Load more files
- Press Enter. The page jumps to it.
- Click it
B. Keyboard navigation
- Press Tab until the “Load more files” row is focused
- Press Enter
C. Zoom
- Zoom to 110–125% often makes the control obvious enough.
These are crude, but they work immediately.
2) Best practical fix for your case: make it bigger/colored locally (Stylus)
If your goal is “I want this to stand out on every HF repo I browse,” a user-style is the right tool.
What Stylus is
Stylus is a browser extension that lets you apply custom CSS to websites (local-only). It does not affect other users.
Stylus has official docs on writing styles and using the browser inspector. (GitHub)
Step-by-step (Chrome / Firefox)
-
Install Stylus (extension). (Crime Web Store)
-
Open your repo page. (Hugging Face)
-
Use the DOM inspector:
- Right-click the “Load more files” row and choose Inspect
- Stylus explicitly recommends using your browser’s DOM inspector for this workflow. (GitHub)
-
In Stylus, create a new style for domain huggingface.co.
-
Target the element you found in the inspector and apply “make it look like a button.”
What CSS changes to apply (conceptually)
You want these properties:
- Bigger click area:
padding, display:block
- Higher visibility:
border, background, font-weight
- Better “this is clickable” cues:
cursor:pointer, :hover
Example CSS shape (you must adapt the selector you grab from Inspect):
/* Replace SELECTOR with the element you inspect for the "Load more files" row */
SELECTOR {
display: block !important;
padding: 10px 12px !important;
border: 2px solid currentColor !important;
border-radius: 8px !important;
font-weight: 700 !important;
cursor: pointer !important;
}
SELECTOR:hover {
filter: brightness(1.1) !important;
}
Why “adapt the selector”: Hugging Face can change class names. The inspect-and-select method stays correct even if the site markup changes.
If you want, tell me your browser (Chrome/Firefox) and paste the HTML snippet you see in Inspect for that row, and I will write an exact selector.
3) Permanent fix: file a feature request (this is the real solution)
You want Hugging Face to change the Hub UI so everyone sees an obvious button.
Best place: Hugging Face Forums → Site Feedback
Hugging Face explicitly says the “Site Feedback” category is for feedback about the website in general. (Hugging Face Forums)
And there are real examples of people filing minor front-end UI bug reports there. (Hugging Face Forums)
A Hugging Face forum answer points to [email protected] for website-related problems and feedback. (Hugging Face Forums)
Optional: GitHub issues (secondary)
-
The forum itself notes it is partly preference whether you use GitHub issues or the forum. (Hugging Face Forums)
-
If you file on GitHub, be aware:
huggingface/hub-docs is the Hub documentation repo. It might not be the right tracker for a frontend UI change, but it exists and is used for Hub-related issues sometimes. (GitHub)
For your specific request (UI discoverability), the forum “Site Feedback” is the cleanest.
What to ask Hugging Face to change (make your request specific)
When teams get a vague “make it better,” it stalls. Ask for concrete UI changes:
A. Make “Load more files” a real button
- Full-width button styling
- High contrast
- Clear hover state
- Larger target size
This aligns with WCAG’s “targets should be easily activated,” and larger targets reduce accidental actions. (W3C)
B. Show counts so users know the list is incomplete
Example:
- “Showing 100 of 842 files” + “Load more”
This solves the “I thought the list ended” confusion.
C. Optional “auto-load on scroll” or “Load 100 more”
Gives power users speed without forcing infinite scroll.
Copy-paste feature request text (use this)
Title: Make “Load more files” in “Files and versions” more visible
Body:
-
Page example: (your link) (Hugging Face)
-
Problem: On repos with long file lists, the “Load more files” control is subtle and easy to miss. Users think the file list ended. Screenshot attached.
-
Request:
- Render “Load more files” as a proper button with higher contrast and larger padding.
- Show “Showing N of M files” so it is obvious the list is truncated.
- Improve accessibility: larger target size and clear focus state (WCAG target-size guidance). (W3C)
-
Why: This is a recurring usability problem on large repos.
Extra: If your real goal is “I need the full list of files,” bypass the UI
If you mainly want to see or download everything, the official tooling is more reliable than the web list.
huggingface_hub download guide (single file or full repo). (Hugging Face)
snapshot_download() supports allow_patterns / ignore_patterns so you do not pull huge files you do not need. (Hugging Face)
- CLI also exists. (Hugging Face)
This avoids “Load more files” entirely.
Summary
- You cannot change that UI globally from settings. It is Hugging Face’s frontend. (Hugging Face)
- Quick local fix: Stylus user-style to make “Load more files” look like a real button. (GitHub)
- Permanent fix: post in HF Forums “Site Feedback” and optionally email [email protected]. (Hugging Face Forums)
- In your request, ask for button styling + “Showing N of M files” + larger target size (WCAG justification). (W3C)