From 9afb32f5264eadd0cd47ceb72d438862e671b29c Mon Sep 17 00:00:00 2001 From: Kazem Keshavarz Date: Mon, 22 Nov 2021 17:10:23 +0330 Subject: [PATCH] Fix vscode custom data tag name (#593) --- scripts/make-vscode-data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-vscode-data.js b/scripts/make-vscode-data.js index 2e6363686..32138e76a 100644 --- a/scripts/make-vscode-data.js +++ b/scripts/make-vscode-data.js @@ -18,7 +18,7 @@ const components = getAllComponents(metadata); const vscode = { tags: [] }; components.map(component => { - const name = component.tag; + const name = component.tagName; const attributes = component.attributes?.map(attr => { const type = attr.type?.text; let values = [];