From 4ec1c608a3c0b7c794fcd9914c9f98c7460c8c26 Mon Sep 17 00:00:00 2001 From: Cory Gwin Date: Thu, 24 Feb 2022 13:31:27 -0500 Subject: [PATCH] small bug with the id on the title --- src/accessibility.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accessibility.js b/src/accessibility.js index fe4a6e857..2b1119580 100644 --- a/src/accessibility.js +++ b/src/accessibility.js @@ -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); }