Fix vscode custom data tag name (#593)

This commit is contained in:
Kazem Keshavarz
2021-11-22 17:10:23 +03:30
committed by GitHub
parent 8ea8a20cc9
commit 9afb32f526

View File

@@ -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 = [];