From c61f3d45fd7a5e64ef4f311cfae99ee06d0d6156 Mon Sep 17 00:00:00 2001
From: chris <kokosias@yahoo.gr>
Date: Thu, 9 Jul 2020 13:52:10 +0300
Subject: [PATCH] add id attribute on creation of new paragraph

---
 .../TrackChangeService/track-changes/helpers/markInsertion.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/wax-prosemirror-services/src/TrackChangeService/track-changes/helpers/markInsertion.js b/wax-prosemirror-services/src/TrackChangeService/track-changes/helpers/markInsertion.js
index c8c6d547c..d9c6d8414 100644
--- a/wax-prosemirror-services/src/TrackChangeService/track-changes/helpers/markInsertion.js
+++ b/wax-prosemirror-services/src/TrackChangeService/track-changes/helpers/markInsertion.js
@@ -1,3 +1,5 @@
+import { v4 as uuidv4 } from "uuid";
+
 const markInsertion = (tr, from, to, user, date, group) => {
   tr.removeMark(from, to, tr.doc.type.schema.marks.deletion);
   tr.removeMark(from, to, tr.doc.type.schema.marks.insertion);
@@ -36,7 +38,7 @@ const markInsertion = (tr, from, to, user, date, group) => {
       tr.setNodeMarkup(
         pos,
         null,
-        Object.assign({}, node.attrs, { track, group }),
+        Object.assign({}, node.attrs, { track, group, id: uuidv4() }),
         node.marks
       );
     }
-- 
GitLab