mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-10-08 16:49:38 +02:00
Fixed Typo in ErrorRenderer.ts (#5256)
* Changes to flow.jison
1. Added support for the plus symbol.
* Changes to errorRenderer.ts
1. Fixed a typo where 'renering' instead 'rendering'
* Revert "Changes to flow.jison"
This reverts commit 28b9dc897f
.
This commit is contained in:
@@ -11,7 +11,7 @@ import { configureSvgSize } from '../../setupGraphViewbox.js';
|
|||||||
* @param version - The version
|
* @param version - The version
|
||||||
*/
|
*/
|
||||||
export const draw = (_text: string, id: string, version: string) => {
|
export const draw = (_text: string, id: string, version: string) => {
|
||||||
log.debug('renering svg for syntax error\n');
|
log.debug('rendering svg for syntax error\n');
|
||||||
|
|
||||||
const svg: SVG = selectSvgElement(id);
|
const svg: SVG = selectSvgElement(id);
|
||||||
svg.attr('viewBox', '0 0 2412 512');
|
svg.attr('viewBox', '0 0 2412 512');
|
||||||
|
Reference in New Issue
Block a user