From f44dc5406ed495aefde1a52b49aaf6a99f5c8b91 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 22 Jun 2025 23:51:04 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/15081 --- app/src/protyle/render/av/cell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index 907d80433..e6ae62065 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -1188,7 +1188,7 @@ export const cellValueIsEmpty = (value: IAVCellValue) => { return !value[value.type as "text"]?.content; } if (["mSelect", "mAsset", "select"].includes(value.type)) { - if (value[value.type as "mSelect"]?.length > 0) { + if (value[(value.type === "select" ? "mSelect" : value.type) as "mSelect"]?.length > 0) { return false; } return true;