Frontmatter
| id | 8411 |
| title | Fix Release navigation button titles showing HTML and Date |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Jan 8, 2026, 10:12 AM |
| updatedAt | Jan 8, 2026, 10:28 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8411 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8362 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 8, 2026, 10:28 AM |
Fix Release navigation button titles showing HTML and Date
tobiu added parent issue #8362 on Jan 8, 2026, 10:13 AM

tobiu
Jan 8, 2026, 10:23 AM
Input from Gemini 3 Pro:
✦ Completed the separation of tree node formatting from the record name.
Changes:
- Reverted
namefield: It is now a simple calculation of the version string, restoring correct behavior for Next/Prev buttons.- Added
treeNodeName: A new calculated field on theReleasemodel that handles the date formatting and HTML wrapping.- Updated
Neo.tree.List: Now respects thedisplayFieldconfig, defaulting tonamebut allowing overrides.- Updated
MainContainer: Configured the Release tree to usetreeNodeName.This resolves the regression where HTML tags were leaking into the navigation UI.
tobiu assigned to @tobiu on Jan 8, 2026, 10:26 AM
tobiu closed this issue on Jan 8, 2026, 10:28 AM
tobiu cross-referenced by #8436 on Jan 8, 2026, 8:15 PM
The recent change to
Releasemodel to enhance tree node titles with dates caused a regression where navigation buttons (Next/Prev) also show the HTML formatting.This task will:
Release.nameto be the raw version string.treeNodeNamecalculated field toReleasemodel for the Tree display.Neo.tree.Listto respectdisplayFieldconfig (currently hardcoded torecord.name).MainContainerto configure the Release tree to usedisplayField: 'treeNodeName'.