Merge pull request #2773 from gwincr11/patch-1

small bug with the id on the title
This commit is contained in:
Ashish Jain
2022-02-24 19:36:53 +01:00
committed by GitHub

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);
}