From 23364b59a0305b1930aaefda5a57174d4809ef8c Mon Sep 17 00:00:00 2001 From: L-Sun Date: Mon, 10 Feb 2025 11:30:14 +0000 Subject: [PATCH] fix(editor): wrap doc title by default (#10052) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Close [AF-2195](https://linear.app/affine-design/issue/AF-2195/editor-的-title-overflow-时没有换行) --- blocksuite/affine/components/src/doc-title/doc-title.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocksuite/affine/components/src/doc-title/doc-title.ts b/blocksuite/affine/components/src/doc-title/doc-title.ts index f7936a4fc8..7f8a4d7d68 100644 --- a/blocksuite/affine/components/src/doc-title/doc-title.ts +++ b/blocksuite/affine/components/src/doc-title/doc-title.ts @@ -219,5 +219,5 @@ export class DocTitle extends WithDisposable(ShadowlessElement) { accessor doc!: Store; @property({ attribute: false }) - accessor wrapText = false; + accessor wrapText = true; }