fix(editor): can not move carte at the end of inline element (#11558)

Close [BS-2922](https://linear.app/affine-design/issue/BS-2922/【移动端-ios】文档添加linked-page后,无法删除)
This commit is contained in:
L-Sun
2025-04-09 08:07:02 +00:00
parent 9cf5e034bb
commit 06497773a7
6 changed files with 68 additions and 15 deletions

View File

@@ -1,7 +1,5 @@
import { IS_SAFARI } from '@blocksuite/global/env';
export const ZERO_WIDTH_SPACE = IS_SAFARI ? '\u200C' : '\u200B';
export const ZERO_WIDTH_SPACE = '\u200C';
// see https://en.wikipedia.org/wiki/Zero-width_non-joiner
export const ZERO_WIDTH_NON_JOINER = '\u200C';
export const ZERO_WIDTH_NON_JOINER = '\u200B';
export const INLINE_ROOT_ATTR = 'data-v-root';