Merge pull request #405 from nubenetes/fix/topic-map-filter-skip

fix(v2): don't inject resource/tag filter on Topic Map & Methodology
This commit is contained in:
Inaki
2026-06-20 12:39:24 +02:00
committed by GitHub
2 changed files with 8 additions and 2 deletions

View File

@@ -27,7 +27,13 @@
h1.textContent.includes("Nubenetes Elite Portal (V2)") ||
h1.textContent.includes("Agentic Video Hub") ||
h1.textContent.includes("Technical Tags Index") ||
h1.textContent.includes("Intelligence Digest")
h1.textContent.includes("Intelligence Digest") ||
// Topic Map / Methodology list categories and legend rows, not
// tagged resources: their <li> items carry no .md-tag, so the
// maturity pills would always filter to zero and the "X of Y
// resources" count is misleading. Skip them.
h1.textContent.includes("Topic Map") ||
h1.textContent.includes("Methodology")
)) {
return;
}

View File

@@ -114,7 +114,7 @@ extra_css:
- static/v2_elite.css?v=2.9.17
extra_javascript:
- static/v2_filter.js?v=2.9.12
- static/v2_filter.js?v=2.9.19
markdown_extensions:
- admonition