diff --git a/blocksuite/framework/inline/src/services/text.ts b/blocksuite/framework/inline/src/services/text.ts index 657d2754f..63ff2cdeb 100644 --- a/blocksuite/framework/inline/src/services/text.ts +++ b/blocksuite/framework/inline/src/services/text.ts @@ -1,5 +1,3 @@ -import { BlockSuiteError, ErrorCode } from '@blocksuite/global/exceptions'; - import type { InlineEditor } from '../inline-editor.js'; import type { DeltaInsert, InlineRange } from '../types.js'; import type { BaseTextAttributes } from '../utils/base-attributes.js'; @@ -70,19 +68,14 @@ export class InlineTextService { ): void => { if (this.editor.isReadonly) return; + if (!text || !text.length) return; + if (this.editor.attributeService.marks) { attributes = { ...attributes, ...this.editor.attributeService.marks }; } const normalizedAttributes = this.editor.attributeService.normalizeAttributes(attributes); - if (!text || !text.length) { - throw new BlockSuiteError( - ErrorCode.InlineEditorError, - 'text must not be empty' - ); - } - this.transact(() => { this.yText.delete(inlineRange.index, inlineRange.length); this.yText.insert(inlineRange.index, text, normalizedAttributes);