`
were missing.
## Root Cause
Self-closing custom elements (`
`) are invalid in HTML5 in-DOM templates.
The browser's HTML parser does NOT treat `/>` as self-closing for custom elements — it
treats `
` as an **opening tag** and looks for ``.
This caused the next sibling `
` to become a **child** of
`
` instead of a sibling. When `nodes.length > 0`, the `v-if="nodes.length === 0"`
on `` was false, and Vue skipped rendering its entire subtree — including the
info table that was accidentally nested inside it.
Verified with a headless browser:
- `` followed by ``: div NOT visible (swallowed)
- `
` followed by `
`: div visible (correct)
## Fix
Changed all self-closing `
` to explicit `
` in
`nodes.html`.
## Files Changed
- `web/html/nodes.html`: 2 self-closing `
` tags → explicit closing tags