From f1dcbb0e7f0b2e1e83cb31a9a12533324a687e5e Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Thu, 9 Nov 2023 12:32:34 +1100 Subject: [PATCH] [CIVIC-1342] Fixed TOC header tag. --- .../02-molecules/table-of-contents/table-of-contents.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/themes/contrib/civictheme/civictheme_library/components/02-molecules/table-of-contents/table-of-contents.js b/web/themes/contrib/civictheme/civictheme_library/components/02-molecules/table-of-contents/table-of-contents.js index 1e25d2004..2dce4363e 100644 --- a/web/themes/contrib/civictheme/civictheme_library/components/02-molecules/table-of-contents/table-of-contents.js +++ b/web/themes/contrib/civictheme/civictheme_library/components/02-molecules/table-of-contents/table-of-contents.js @@ -98,7 +98,7 @@ CivicThemeTableOfContents.prototype.findLinks = function (anchorSelector, scopeS }; CivicThemeTableOfContents.prototype.renderTitle = function (title) { - return `
${title}
`; + return `

${title}

`; }; CivicThemeTableOfContents.prototype.renderLinks = function (links) {