fix: variable value is lost after refreshing markdown block popup (#5478)

This commit is contained in:
Katherine 2024-10-22 11:29:32 +08:00 committed by GitHub
parent f0abab4ad0
commit fc79c4397a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,6 +150,7 @@ export const MarkdownVoid: any = withDynamicSchemaProps(
useEffect(() => { useEffect(() => {
setLoading(true); setLoading(true);
const cvtContentToHTML = async () => { const cvtContentToHTML = async () => {
setTimeout(async () => {
const replacedContent = await getRenderContent( const replacedContent = await getRenderContent(
engine, engine,
content, content,
@ -157,8 +158,8 @@ export const MarkdownVoid: any = withDynamicSchemaProps(
compile(localVariables), compile(localVariables),
parseMarkdown, parseMarkdown,
); );
setHtml(replacedContent); setHtml(replacedContent);
});
setLoading(false); setLoading(false);
}; };
cvtContentToHTML(); cvtContentToHTML();