From 3f50fdab5a42f1e819e09dc1bc3344ac4a8a8334 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 31 Dec 2023 00:17:52 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/9958 --- app/src/protyle/render/av/blockAttr.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/src/protyle/render/av/blockAttr.ts b/app/src/protyle/render/av/blockAttr.ts index e8a22a2e3..064984753 100644 --- a/app/src/protyle/render/av/blockAttr.ts +++ b/app/src/protyle/render/av/blockAttr.ts @@ -73,6 +73,11 @@ export const genAVValueHTML = (value: IAVCellValue) => { html += `${value.relation?.contents[index]}`; }); break; + case "rollup": + value.rollup?.contents.forEach((item) => { + html += `${item}`; + }); + break; } return html; };