fix(web): editor bug

This commit is contained in:
zhaoying
2026-03-20 10:58:58 +08:00
parent 52fdfc7744
commit 9a765ac71e

View File

@@ -18,8 +18,8 @@ const InitialValuePlugin: React.FC<InitialValuePluginProps> = ({ value, options
const isUserInputRef = useRef(false); const isUserInputRef = useRef(false);
useEffect(() => { useEffect(() => {
// 监听编辑器变化,标记是否为用户输入 const removeListener = editor.registerUpdateListener(({ editorState, tags }) => {
const removeListener = editor.registerUpdateListener(({ editorState }) => { if (tags.has('programmatic')) return;
editorState.read(() => { editorState.read(() => {
const root = $getRoot(); const root = $getRoot();
const textContent = root.getTextContent(); const textContent = root.getTextContent();
@@ -107,7 +107,7 @@ const InitialValuePlugin: React.FC<InitialValuePluginProps> = ({ value, options
}); });
root.append(paragraph); root.append(paragraph);
} }
}, { discrete: true }); }, { discrete: true, tag: 'programmatic' });
}); });
} }