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

View File

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