Skip to content

Commit

Permalink
Increase size limits in Mermaid DAG renderer
Browse files Browse the repository at this point in the history
Co-authored-by: Luiz Gadelha <[email protected]>
  • Loading branch information
lgadelha and Luiz Gadelha authored Mar 22, 2024
1 parent 6139160 commit 8a53a11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</pre>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
mermaid.initialize({ startOnLoad: true, maxTextSize: Number.MAX_SAFE_INTEGER, maxEdges: Number.MAX_SAFE_INTEGER });
</script>
</body>
</html>

0 comments on commit 8a53a11

Please sign in to comment.