Update src/diagrams/requirement/requirementRenderer.js

Co-authored-by: Lindsey Wild <35239154+lindseywild@users.noreply.github.com>
This commit is contained in:
Cory Gwin 2022-04-07 14:22:47 -04:00 committed by GitHub
parent 3d7cb212c0
commit 1d269f07e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ export const draw = (text, id) => {
configureSvgSize(svg, height, width, conf.useMaxWidth);
svg.attr('viewBox', `${svgBounds.x - padding} ${svgBounds.y - padding} ${width} ${height}`);
// Adds title and description to the flow chart
// Adds title and description to the requirements diagram
addSVGAccessibilityFields(parser.yy, svg, id);
};