Frontmatter
| id | 9190 |
| title | DevIndex: Add ''Private %'' Column |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Feb 17, 2026, 4:44 AM |
| updatedAt | Feb 17, 2026, 4:59 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9190 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9106 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 17, 2026, 4:59 AM |
DevIndex: Add 'Private %' Column
tobiu assigned to @tobiu on Feb 17, 2026, 4:57 AM

tobiu
Feb 17, 2026, 4:58 AM
Input from Gemini 3 Pro:
✦ Implemented the 'Private %' column in the DevIndex grid.
- Model Update: Added
totalPrivateContributionsandprivateContributionsRatiocalculated fields toDevIndex.model.Contributor. The logic supports both Record instances and raw data (Soft Hydration) for performance.- Grid Update: Added the column to
DevIndex.view.home.GridContainer.
- Position: After 'Total'.
- Renderer: Displays values with 2 decimal places. Zeros and nulls are rendered as empty strings to reduce visual clutter.
- Width: Set to
90for both 'Private %' and 'Commits %' to optimize horizontal space.
tobiu added parent issue #9106 on Feb 17, 2026, 4:58 AM
tobiu closed this issue on Feb 17, 2026, 4:59 AM
To better understand the contribution distribution, we need a new column that shows the ratio of private contributions (
py) to total contributions (tc).Formula:
(totalPrivateContributions / totalContributions) * 100Proposed Implementation:
totalPrivateContributionscalculated field toDevIndex.model.Contributor.privateContributionsRatiocalculated field.DevIndex.view.home.GridContainer, positioned after 'Total'.