mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-11-16 18:54:12 +01:00
Fix missing await in usage document
This commit is contained in:
@@ -348,10 +348,10 @@ mermaid.parseError = function (err, hash) {
|
|||||||
displayErrorInGui(err);
|
displayErrorInGui(err);
|
||||||
};
|
};
|
||||||
|
|
||||||
const textFieldUpdated = function () {
|
const textFieldUpdated = async function () {
|
||||||
const textStr = getTextFromFormField('code');
|
const textStr = getTextFromFormField('code');
|
||||||
|
|
||||||
if (mermaid.parse(textStr)) {
|
if (await mermaid.parse(textStr)) {
|
||||||
reRender(textStr);
|
reRender(textStr);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -345,10 +345,10 @@ mermaid.parseError = function (err, hash) {
|
|||||||
displayErrorInGui(err);
|
displayErrorInGui(err);
|
||||||
};
|
};
|
||||||
|
|
||||||
const textFieldUpdated = function () {
|
const textFieldUpdated = async function () {
|
||||||
const textStr = getTextFromFormField('code');
|
const textStr = getTextFromFormField('code');
|
||||||
|
|
||||||
if (mermaid.parse(textStr)) {
|
if (await mermaid.parse(textStr)) {
|
||||||
reRender(textStr);
|
reRender(textStr);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user