docs: Fix changelog

This commit is contained in:
Sidharth Vinod 2023-02-21 21:40:06 +05:30
parent b868777184
commit bdf2667389
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD

View File

@ -26,7 +26,7 @@ element.innerHTML = svg;
bindFunctions?.(element);
// >= v10 with promise.then
mermaid.render('graph TD;A-->B').then(({ svg, bindFunctions }) => {
mermaid.render('id', 'graph TD;A-->B').then(({ svg, bindFunctions }) => {
element.innerHTML = svg;
bindFunctions?.(element);
});