Frontmatter
| id | 9182 |
| title | Fix SortZone onDragMove race condition |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Feb 16, 2026, 11:38 AM |
| updatedAt | Feb 16, 2026, 11:42 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9182 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 9106 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 16, 2026, 11:42 AM |
SortZone.onDragMovecan trigger beforeboundaryContainerRectis available (asynchronous retrieval from main thread), causing aTypeError: Cannot read properties of null (reading 'right'). We need to add a guard check to ensureboundaryContainerRectexists before accessing its properties. This affectssrc/draggable/container/SortZone.mjs.