Merge pull request #4339 from lcsfort/patch-1

fix: Correct parent node lookup in evaluateAbsolutePosition
This commit is contained in:
Moritz Klack
2024-06-05 13:02:49 +02:00
committed by GitHub
+1 -1
View File
@@ -247,7 +247,7 @@ export function evaluateAbsolutePosition(
const positionAbsolute = { ...position };
while (nextParentId) {
const parent = nodeLookup.get(parentId);
const parent = nodeLookup.get(nextParentId);
nextParentId = parent?.parentId;
if (parent) {