From d4400a9124217c11be6fb5a3b7d62807f2ff4d3c Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 10 Jul 2025 16:48:00 +0800 Subject: [PATCH] :lipstick: https://github.com/siyuan-note/siyuan/pull/15202 --- app/src/protyle/render/av/cell.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index 687c0fffc..ee23501d0 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -1007,8 +1007,9 @@ export const renderCell = (cellValue: IAVCellValue, rowIndex = 0, showIcon = tru } } - if ((["text", "template", "url", "email", "phone", "number", "date", "created", "updated"].includes(cellValue.type) && cellValue[cellValue.type as "url"]?.content) || + if ((["text", "template", "url", "email", "phone", "date", "created", "updated"].includes(cellValue.type) && cellValue[cellValue.type as "url"]?.content) || cellValue.type === "lineNumber" || + (cellValue.type === "number" && cellValue.number?.isNotEmpty) || (cellValue.type === "block" && cellValue.block?.content)) { text += ``; }