Another question regarding making nodes clickable. I hade to tweak MermaidDiagramInterop.js to adjust the security level to make the click callback to work.
Is there another way that I'm missing? :)
function initializeGlobals() {
window.mermaidDiagramBlazorOptions.securityLevel = "loose"; // <-- Had to add this
console.log("initializeGlobals", window.mermaidDiagramBlazorOptions);
function loadMermaid() {
return new Promise((resolve) => { ...
Hi!
Another question regarding making nodes clickable. I hade to tweak
MermaidDiagramInterop.js
to adjust the security level to make the click callback to work.Is there another way that I'm missing? :)