From 604b4e5fdbc23b7e91f0b95bb439f208ef0fc698 Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Wed, 22 Nov 2023 12:28:54 +0000 Subject: [PATCH] Ensure that submitOps is called in a timeout (#15840) GitOrigin-RevId: f4b5f9649a18e5e0ea2332b6e8c90426d7c055d6 --- .../js/features/source-editor/extensions/changes/comments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/frontend/js/features/source-editor/extensions/changes/comments.ts b/services/web/frontend/js/features/source-editor/extensions/changes/comments.ts index c43aec78f8..3a5cd215b0 100644 --- a/services/web/frontend/js/features/source-editor/extensions/changes/comments.ts +++ b/services/web/frontend/js/features/source-editor/extensions/changes/comments.ts @@ -153,7 +153,7 @@ const submitOpsAfterEvent = ( // TODO: could put this in an update listener instead, if the ShareJS doc has been updated by then? currentDoc.on(eventName, () => { currentDoc.off(eventName) - submitOps(currentDoc, ops, transaction) + window.setTimeout(() => submitOps(currentDoc, ops, transaction)) }) }