diff --git a/blocksuite/affine/data-view/src/core/detail/detail.ts b/blocksuite/affine/data-view/src/core/detail/detail.ts
index 6c3440d55a..b4bcfb8a46 100644
--- a/blocksuite/affine/data-view/src/core/detail/detail.ts
+++ b/blocksuite/affine/data-view/src/core/detail/detail.ts
@@ -231,33 +231,38 @@ export class RecordDetail extends SignalWatcher(
${ArrowDownBigIcon()}
-
- ${keyed(this.rowId, this.renderHeader())}
- ${repeat(
- properties,
- v => v.id,
- property => {
- return keyed(
- this.rowId,
- html`
`
- );
- }
- )}
- ${!this.readonly
- ? html`
-
${PlusIcon()}
- Add Property
-
`
- : nothing}
+
+
+ ${keyed(this.rowId, this.renderHeader())}
+ ${repeat(
+ properties,
+ v => v.id,
+ property => {
+ return keyed(
+ this.rowId,
+ html`
`
+ );
+ }
+ )}
+ ${!this.readonly
+ ? html`
+
${PlusIcon()}
+ Add Property
+
`
+ : nothing}
+
+ ${keyed(this.rowId, this.renderNote())}
- ${keyed(this.rowId, this.renderNote())}
`;
}