Frontmatter
| id | 9148 |
| title | DevIndex: Use locale formatting for StatusToolbar row count |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Feb 13, 2026, 6:38 PM |
| updatedAt | Feb 13, 2026, 6:41 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9148 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9106 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 13, 2026, 6:41 PM |
DevIndex: Use locale formatting for StatusToolbar row count
tobiu added parent issue #9106 on Feb 13, 2026, 6:38 PM

tobiu
Feb 13, 2026, 6:41 PM
Input from Gemini 3 Pro:
✦ I have implemented the locale-based number formatting for the status toolbar row count, including the optimization to cache the
Intl.NumberFormatinstance as a class field.Changes:
- Added
numberFormatterclass field toStatusToolbar.- Updated
updateRowsLabelto use the cached formatter.The code has been committed and pushed.
tobiu assigned to @tobiu on Feb 13, 2026, 6:41 PM
tobiu closed this issue on Feb 13, 2026, 6:41 PM
Update
apps/devindex/view/home/StatusToolbar.mjsto format the visible row count usingIntl.NumberFormat. This improves readability for large numbers (e.g., "1,234" instead of "1234").