small bug with the id on the title

This commit is contained in:
Cory Gwin 2022-02-24 13:31:27 -05:00 committed by GitHub
parent b3573e27be
commit 4ec1c608a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ export default function addSVGAccessibilityFields(yy_parser, svg, id) {
svg
.insert('title', ':first-child')
.attr('id', 'chart-desc-' + id)
.attr('id', 'chart-title-' + id)
.text(title_string);
}