Frontmatter
| id | 8048 |
| title | [Dashboard] Pass dragProxyConfig to internal SortZone |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Dec 7, 2025, 2:15 PM |
| updatedAt | Dec 7, 2025, 2:16 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8048 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 7, 2025, 2:16 PM |
The
Neo.dashboard.Containerclass instantiates aSortZoneinternally whensortableis true, but it fails to pass thedragProxyConfigfrom the dashboard instance to the sort zone.This prevents developers from customizing the drag proxy behavior (e.g., switching to
DragProxyContainerfor live dragging) when using a Dashboard.Fix: Update
src/dashboard/Container.mjsafterSetSortablemethod to passdragProxyConfig: me.dragProxyConfigto theSortZonecreation config.