From 7b77d918ca5dbd927acdfe6726d0024eb4b85ac5 Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Wed, 25 Mar 2026 10:00:05 +0100 Subject: [PATCH] fix(docs-ui): strip backticks from affected component names in changelog sync Vale validation can require backticks around component names like `useTable` in changesets. The sync script now strips backticks so these names are matched correctly. Signed-off-by: Johan Persson --- docs-ui/scripts/sync-changelog.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-ui/scripts/sync-changelog.mjs b/docs-ui/scripts/sync-changelog.mjs index 99c712f4aa..48df906747 100644 --- a/docs-ui/scripts/sync-changelog.mjs +++ b/docs-ui/scripts/sync-changelog.mjs @@ -298,7 +298,7 @@ async function parseListItem( if (componentMatch) { const componentNames = componentMatch[1] .split(',') - .map(name => name.trim()) + .map(name => name.trim().replace(/`/g, '')) .filter(Boolean); componentNames.forEach(name => {