Frontmatter
| id | 2396 |
| title | vdom.Helper: createDeltas() => ensure there are no move OPs to the same index |
| state | Closed |
| labels | enhancementstale |
| assignees | tobiu |
| createdAt | Jun 18, 2021, 12:43 AM |
| updatedAt | Sep 16, 2024, 4:36 AM |
| githubUrl | https://github.com/neomjs/neo/issues/2396 |
| author | tobiu |
| commentsCount | 3 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Sep 16, 2024, 4:36 AM |
vdom.Helper: createDeltas() => ensure there are no move OPs to the same index
tobiu assigned to @tobiu on Jun 18, 2021, 12:43 AM

tobiu
Jun 18, 2021, 12:44 AM
this should also get added to the latest calendar siesta test.
@github-actions - 2024-09-01T02:38:39Z
This issue is stale because it has been open for 90 days with no activity.
- 2024-09-01T02:38:39Z @github-actions added the
stalelabel
@github-actions - 2024-09-16T02:36:56Z
This issue was closed because it has been inactive for 14 days since being marked as stale.
- 2024-09-16T02:36:56Z @github-actions closed this issue
this does not cause any bugs, but triggers a not needed dom OP.
if (movedNode) { // todo: check if there is a real index change deltas.push({ action: 'moveNode', id : oldVnode.id, index : movedNode.index, parentId: movedNode.parentNode.id });