From ed41d42d1e51023e97c74da00164087dff4ad0b3 Mon Sep 17 00:00:00 2001 From: Eric Mc Sween <5454374+emcsween@users.noreply.github.com> Date: Thu, 16 Jan 2025 08:25:16 -0500 Subject: [PATCH] Merge pull request #22892 from overleaf/em-filter-tracked-deletes Filter tracked deletes on project snapshot GitOrigin-RevId: 5146e00b67af8dc15bf17f587cb6173a0a21544d --- services/web/frontend/js/infrastructure/project-snapshot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/frontend/js/infrastructure/project-snapshot.ts b/services/web/frontend/js/infrastructure/project-snapshot.ts index 226d44923c..d16f7b81ea 100644 --- a/services/web/frontend/js/infrastructure/project-snapshot.ts +++ b/services/web/frontend/js/infrastructure/project-snapshot.ts @@ -56,7 +56,7 @@ export class ProjectSnapshot { if (file == null) { return null } - return file.getContent() ?? null + return file.getContent({ filterTrackedDeletes: true }) ?? null } private async loadDocs() {