You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Hub/taxonomy pages (e.g. Node Types → Directory, Node Types → Class) show an empty rectangle where the distribution chart should be.
Root Cause
The hub chart data has typeDistribution: null and distributions: {} on single-type taxonomy pages. The JS tries to render a donut chart but finds no data, leaving the .chart-panel container visible but empty.
Bug
Hub/taxonomy pages (e.g. Node Types → Directory, Node Types → Class) show an empty rectangle where the distribution chart should be.
Root Cause
The hub chart data has
typeDistribution: nullanddistributions: {}on single-type taxonomy pages. The JS tries to render a donut chart but finds no data, leaving the.chart-panelcontainer visible but empty.Example from the page source:
{"entryName":"Class","totalEntities":59,"typeDistribution":null}Expected Behavior
Either:
Where to Look
internal/pssg/— hub page data generation (what populateshub-chart-data)templates/hub.html— the chart panel markuptemplates/_main.js— hub chart rendering (line ~430)Affected Pages
Every hub page where there's only one dimension to show — typically Node Types → {specific type}, Languages → {specific language}, etc.