Skip to content

Commit

Permalink
Version update and adjusted error diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Aug 11, 2023
1 parent 4930231 commit a0b80f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/mermaid/package.json
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/mermaid/src/diagrams/error/errorRenderer.ts
Expand Up @@ -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');
Expand Down

0 comments on commit a0b80f5

Please sign in to comment.