diff --git a/app/src/assets/scss/util/_function.scss b/app/src/assets/scss/util/_function.scss
index 5386f99e9..93ef7ec9c 100644
--- a/app/src/assets/scss/util/_function.scss
+++ b/app/src/assets/scss/util/_function.scss
@@ -20,6 +20,12 @@
display: inline-block;
flex-shrink: 0;
}
+
+ &--5 {
+ width: 5px;
+ display: inline-block;
+ flex-shrink: 0;
+ }
}
&__hr {
diff --git a/app/src/protyle/render/av/blockAttr.ts b/app/src/protyle/render/av/blockAttr.ts
index 7cddcf4b2..f6dbf08b4 100644
--- a/app/src/protyle/render/av/blockAttr.ts
+++ b/app/src/protyle/render/av/blockAttr.ts
@@ -138,7 +138,7 @@ export const genAVValueHTML = (value: IAVCellValue) => {
if (item && item.block) {
const rowID = value.relation.blockIDs[index];
if (item?.isDetached) {
- html += `${Lute.EscapeHTMLStr(item.block.content || window.siyuan.languages.untitled)}`;
+ html += `➖${Lute.EscapeHTMLStr(item.block.content || window.siyuan.languages.untitled)}`;
} else {
// data-block-id 用于更新 emoji
html += `${Lute.EscapeHTMLStr(item.block.content || window.siyuan.languages.untitled)}`;
diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts
index a4be23f36..f2c53013a 100644
--- a/app/src/protyle/render/av/cell.ts
+++ b/app/src/protyle/render/av/cell.ts
@@ -1007,7 +1007,7 @@ export const renderCell = (cellValue: IAVCellValue, rowIndex = 0, showIcon = tru
if (item && item.block) {
const rowID = cellValue.relation.blockIDs[index];
if (item?.isDetached) {
- text += `${Lute.EscapeHTMLStr(item.block.content || window.siyuan.languages.untitled)}`;
+ text += `➖${Lute.EscapeHTMLStr(item.block.content || window.siyuan.languages.untitled)}`;
} else {
// data-block-id 用于更新 emoji
text += `${Lute.EscapeHTMLStr(item.block.content || window.siyuan.languages.untitled)}`;