From aed7a68ec03285c2323dae0bb37a3b649b374cad Mon Sep 17 00:00:00 2001 From: Henry Castro Date: Wed, 1 Mar 2023 16:05:55 -0400 Subject: [PATCH] browser: add author data to calc comment The recent changes in LO Core, when edit a comment in Calc the author data is not preserved. Change-Id: I4f26ef2044d28bf55ff6a00a2e585ece79c6eb9b Signed-off-by: Henry Castro --- browser/src/layer/tile/CommentListSection.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/browser/src/layer/tile/CommentListSection.ts b/browser/src/layer/tile/CommentListSection.ts index 6d98957b6..aaa9d7e44 100644 --- a/browser/src/layer/tile/CommentListSection.ts +++ b/browser/src/layer/tile/CommentListSection.ts @@ -529,6 +529,10 @@ export class CommentSection extends CanvasSectionObject { type: 'string', value: annotation.sectionProperties.data.id }, + Author: { + type: 'string', + value: annotation.sectionProperties.data.author + }, Text: { type: 'string', value: annotation.sectionProperties.data.text