Skip to content

Commit

Permalink
Fix invalid path of style changes (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins authored Aug 23, 2023
1 parent 2c151a1 commit 0369525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/document/crdt/tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ export class CRDTTree extends CRDTGCElement {
from: this.toIndex(fromParent, fromLeft),
to: this.toIndex(toParent, toLeft),
fromPath: this.toPath(fromParent, fromLeft),
toPath: this.toPath(fromParent, fromLeft),
toPath: this.toPath(toParent, toLeft),
actor: editedAt.getActorID()!,
value: attributes ? parseObjectValues(attributes) : undefined,
});
Expand Down

0 comments on commit 0369525

Please sign in to comment.