[document-updater] Avoid sending empty ops to project-history (#17920)

GitOrigin-RevId: a5156d99be373feb111bcc956d70c0f47047dd72
This commit is contained in:
Domagoj Kriskovic 2024-04-16 10:56:07 +02:00 committed by Copybot
parent c4437c69bc
commit 238e63e08c

View file

@ -71,7 +71,9 @@ const RangesManager = {
}
rangesTracker.applyOp(op, { user_id: update.meta?.user_id })
}
historyUpdates.push({ ...update, op: historyOps })
if (historyOps.length > 0) {
historyUpdates.push({ ...update, op: historyOps })
}
}
if (