fix(web): markdown list auto-completion creates new line correctly (#5238)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Johnny 2025-11-08 10:47:10 +08:00 committed by GitHub
parent c54fcf7aa7
commit bd21338fdb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,8 @@ const Editor = forwardRef(function Editor(props: Props, ref: React.ForwardedRef<
// Detect list item using regex-based detection // Detect list item using regex-based detection
const listInfo = detectLastListItem(prevContent); const listInfo = detectLastListItem(prevContent);
if (listInfo.type) { if (listInfo.type) {
const insertText = generateListContinuation(listInfo); event.preventDefault();
const insertText = "\n" + generateListContinuation(listInfo);
editorActions.insertText(insertText); editorActions.insertText(insertText);
} }
} }