From 4d5835e9de3c63d1a4e64ec7482df5db90b0c6b5 Mon Sep 17 00:00:00 2001 From: inokawa <48897392+inokawa@users.noreply.github.com> Date: Wed, 29 Sep 2021 13:43:46 +0900 Subject: [PATCH] Fix wrong property name of InsertJSON and DeleteJSON (#349) --- docx-wasm/js/json/paragraph.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docx-wasm/js/json/paragraph.ts b/docx-wasm/js/json/paragraph.ts index d5d9c68..1ef21d3 100644 --- a/docx-wasm/js/json/paragraph.ts +++ b/docx-wasm/js/json/paragraph.ts @@ -50,7 +50,7 @@ export type InsertJSON = { | CommentRangeEndJSON )[]; author: string; - data: string; + date: string; }; }; @@ -59,7 +59,7 @@ export type DeleteJSON = { data: { children: DeleteChildJSON[]; author: string; - data: string; + date: string; }; };