mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 11:29:00 +08:00
fix: text.split (#17842)
This commit is contained in:
parent
0ccd8bdfa8
commit
7ee5cc80a2
@ -296,7 +296,7 @@ export function $splitNodeContainingQuery(match: MenuTextMatch): TextNode | null
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function textToEditorState(text: string) {
|
export function textToEditorState(text: string) {
|
||||||
const paragraph = text ? text.split('\n') : ['']
|
const paragraph = text && (typeof text === 'string') ? text.split('\n') : ['']
|
||||||
|
|
||||||
return JSON.stringify({
|
return JSON.stringify({
|
||||||
root: {
|
root: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user