diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts
index 704ceb4f0..b790f98b7 100644
--- a/app/src/protyle/render/av/cell.ts
+++ b/app/src/protyle/render/av/cell.ts
@@ -604,7 +604,7 @@ export const renderCell = (cellValue: IAVCellValue) => {
text = `${urlContent}`;
} else if (cellValue.type === "block") {
if (cellValue?.isDetached) {
- text = `${cellValue.block.content || ""}
+ text = `${cellValue.block.content || "Untitled"}
${window.siyuan.languages.more}`;
} else {
text = `${cellValue.block.content || "Untitled"}
@@ -657,7 +657,7 @@ export const renderCell = (cellValue: IAVCellValue) => {
cellValue?.relation?.contents?.forEach((item) => {
if (item && item.block) {
if (item.isDetached) {
- text += `${item.block.content || ""}, `;
+ text += `${item.block.content || "Untitled"}, `;
} else {
text += `${item.block.content || "Untitled"}, `;
}
@@ -689,7 +689,7 @@ const renderRollup = (cellValue: IAVCellValue) => {
}
} else if (cellValue.type === "block") {
if (cellValue?.isDetached) {
- text = `${cellValue.block?.content || ""}`;
+ text = `${cellValue.block?.content || "Untitled"}`;
} else {
text = `${cellValue.block?.content || "Untitled"}`;
}