From e78417e7636e20a3f15bf9ccd75e32b41f1d86c9 Mon Sep 17 00:00:00 2001 From: Chiara Marmo Date: Tue, 5 Nov 2024 10:59:38 +0100 Subject: [PATCH] Invert old and new content comment (#16918) --- packages/services/src/contents/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/services/src/contents/index.ts b/packages/services/src/contents/index.ts index a9d8b6339873..d32d9cfde3d3 100644 --- a/packages/services/src/contents/index.ts +++ b/packages/services/src/contents/index.ts @@ -228,12 +228,12 @@ export namespace Contents { type: 'new' | 'delete' | 'rename' | 'save'; /** - * The new contents. + * The old contents. */ oldValue: Partial | null; /** - * The old contents. + * The new contents. */ newValue: Partial | null; }