Frontmatter
| id | 9198 |
| title | Cleanup Redundant GridContainer Logic |
| state | Closed |
| labels | refactoring |
| assignees | tobiu |
| createdAt | Feb 17, 2026, 3:20 PM |
| updatedAt | Feb 17, 2026, 3:21 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9198 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9194 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 17, 2026, 3:21 PM |
Cleanup Redundant GridContainer Logic
tobiu added parent issue #9194 on Feb 17, 2026, 3:20 PM

tobiu
Feb 17, 2026, 3:21 PM
Input from Gemini 3 Pro:
✦ Removed redundant manual synchronization logic from
apps/devindex/view/home/GridContainer.mjs. The core fix inNeo.grid.column.Basenow handles map updates correctly.
tobiu closed this issue on Feb 17, 2026, 3:21 PM
tobiu assigned to @tobiu on Feb 17, 2026, 3:21 PM
Objective
Remove redundant manual synchronization logic for
columnPositionsinDevIndex.view.home.GridContainer.Context
In an earlier attempt to fix #9195, manual logic was added to
afterSetDataModeto update thecolumnPositionsmap. The core issue has now been resolved inNeo.grid.column.Base(which handles the map update correctly and preserves order). This application-level logic is now redundant and should be removed to keep the codebase clean.