mirror of
https://github.com/cudr/slate-collaborative.git
synced 2024-10-27 20:34:06 +00:00
Merge branch 'fix_split_node_missing_properties' of github.com:xliulian/slate-collaborative
This commit is contained in:
commit
afe29e538e
@ -8,7 +8,10 @@ const splitNode = (doc: SyncValue, op: SplitNodeOperation): SyncValue => {
|
||||
const [parent, index]: [any, number] = getParent(doc, op.path)
|
||||
|
||||
const target = getChildren(parent)[index]
|
||||
const inject = cloneNode(target)
|
||||
const inject = {
|
||||
...cloneNode(target),
|
||||
...op.properties
|
||||
}
|
||||
|
||||
if (target.text) {
|
||||
target.text.length > op.position &&
|
||||
|
Loading…
Reference in New Issue
Block a user