diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index e6e4f0054..1a7e619ac 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -664,7 +664,7 @@ export const renderCell = (cellValue: IAVCellValue, wrap: boolean) => { const renderRollup = (cellValue: IAVCellValue, wrap: boolean) => { let text = "" if (["text", "template"].includes(cellValue.type)) { - text = `${cellValue ? (cellValue[cellValue.type as "text"].content || "") : ""}`; + text = cellValue ? (cellValue[cellValue.type as "text"].content || "") : ""; } else if (["url", "email", "phone"].includes(cellValue.type)) { const urlContent = cellValue ? cellValue[cellValue.type as "url"].content : ""; // https://github.com/siyuan-note/siyuan/issues/9291 @@ -675,11 +675,9 @@ const renderRollup = (cellValue: IAVCellValue, wrap: boolean) => { text = `${urlContent}`; } else if (cellValue.type === "block") { if (cellValue?.isDetached) { - text = `${cellValue.block.content || ""} -${window.siyuan.languages.more}`; + text = `${cellValue.block.content || ""}`; } else { - text = `${cellValue.block.content || ""} -${window.siyuan.languages.update}`; + text = `${cellValue.block.content || ""}`; } } else if (cellValue.type === "number") { text = `${cellValue?.number.formattedContent || cellValue?.number.content || ""}`;