Skip to content

Commit

Permalink
Merge pull request #4460 from jonathan-r-young/develop
Browse files Browse the repository at this point in the history
Changed C4 stereotype braces to «»
  • Loading branch information
sidharthv96 authored Jun 16, 2023
2 parents 15dbf22 + 8cbe1a9 commit 6d4a064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mermaid/src/diagrams/c4/c4Renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export const drawC4ShapeArray = function (currentBounds, diagram, c4ShapeArray,
let c4ShapeTypeConf = c4ShapeFont(conf, c4Shape.typeC4Shape.text);
c4ShapeTypeConf.fontSize = c4ShapeTypeConf.fontSize - 2;
c4Shape.typeC4Shape.width = calculateTextWidth(
'<<' + c4Shape.typeC4Shape.text + '>>',
'«' + c4Shape.typeC4Shape.text + '»',
c4ShapeTypeConf
);
c4Shape.typeC4Shape.height = c4ShapeTypeConf.fontSize + 2;
Expand Down

0 comments on commit 6d4a064

Please sign in to comment.