From 83e6f5d664eae56d39d77a50a31a0a487068a491 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Tue, 12 Aug 2025 23:37:32 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/15533 --- app/src/protyle/render/av/cell.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index 78b3dc0b3..316a71a54 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -195,6 +195,9 @@ const transformCellValue = (colType: TAVCol, value: IAVCellValue): IAVCellValue content: getCellValueContent(value).toString(), color: "1" }]; + if (!newValue.mSelect[0].content) { + newValue.mSelect = []; + } } else if (colType === "rollup") { newValue.rollup = {contents: [value]}; } else if (colType === "checkbox") {