Version update and adjusted error diagram

This commit is contained in:
Knut Sveidqvist
2023-08-11 14:03:56 +02:00
parent 493023118f
commit a0b80f5490
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "mermaid",
"version": "10.3.0",
"version": "10.3.1",
"description": "Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
"type": "module",
"module": "./dist/mermaid.core.mjs",

View File

@@ -14,7 +14,7 @@ export const draw = (_text: string, id: string, version: string) => {
log.debug('renering svg for syntax error\n');
const svg: SVG = selectSvgElement(id);
svg.attr('viewBox', '0 0 1912 512');
svg.attr('viewBox', '0 0 2412 512');
configureSvgSize(svg, 100, 512, true);
const g: Group = svg.append('g');