We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32d4755 commit 00aadafCopy full SHA for 00aadaf
src/features/bladeComponent.ts
@@ -10,10 +10,10 @@ export const linkProvider: LinkProvider = (doc: vscode.TextDocument) => {
10
const views = getViews().items;
11
12
lines.forEach((line, index) => {
13
- const match = line.match(/<\/?(x-[^\s>]+)/);
+ const match = line.match(/<\/?x-([^\s>]+)/);
14
15
if (match && match.index !== undefined) {
16
- const componentName = match[1].replace("x-", "");
+ const componentName = match[1];
17
// Standard component
18
const viewName = "components." + componentName;
19
// Index component
0 commit comments