Skip to content
Snippets Groups Projects
Commit 6e6c9e2e authored by chris's avatar chris
Browse files

add viewId

parent cede0585
No related branches found
No related tags found
1 merge request!472Upgrade pm
...@@ -21,7 +21,7 @@ const replaceAroundStep = ( ...@@ -21,7 +21,7 @@ const replaceAroundStep = (
newTr.step(step); newTr.step(step);
const from = step.getMap().map(step.from, -1); const from = step.getMap().map(step.from, -1);
const to = step.getMap().map(step.gapFrom); const to = step.getMap().map(step.gapFrom);
markInsertion(newTr, from, to, user, date, group); markInsertion(newTr, from, to, user, date, group, viewId);
} else if (!step.slice.size || step.slice.content.content.length === 2) { } else if (!step.slice.size || step.slice.content.content.length === 2) {
const invertStep = originalStep.invert(tr.docs[originalStepIndex]).map(map); const invertStep = originalStep.invert(tr.docs[originalStepIndex]).map(map);
// unwrapped from something // unwrapped from something
......
...@@ -44,7 +44,15 @@ const replaceStep = ( ...@@ -44,7 +44,15 @@ const replaceStep = (
} }
const mappedNewStepTo = newStep.getMap().map(newStep.to); const mappedNewStepTo = newStep.getMap().map(newStep.to);
markInsertion(trTemp, newStep.from, mappedNewStepTo, user, date, group); markInsertion(
trTemp,
newStep.from,
mappedNewStepTo,
user,
date,
group,
viewId,
);
// We condense it down to a single replace step. // We condense it down to a single replace step.
const condensedStep = new ReplaceStep( const condensedStep = new ReplaceStep(
newStep.from, newStep.from,
......
...@@ -60,7 +60,6 @@ const trackedTransaction = ( ...@@ -60,7 +60,6 @@ const trackedTransaction = (
const step = originalStep.map(map); const step = originalStep.map(map);
const { doc } = newTr; const { doc } = newTr;
if (!step) return; if (!step) return;
switch (step.constructor) { switch (step.constructor) {
case ReplaceStep: case ReplaceStep:
replaceStep( replaceStep(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment