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 c418bef commit 3b19a6eCopy full SHA for 3b19a6e
packages/language-service/lib/plugins/data.ts
@@ -156,7 +156,7 @@ function resolveReferences(data: html.HTMLDataV1) {
156
157
for (const item of [
158
...data.globalAttributes ?? [],
159
- ...data.tags?.flatMap((tag) => [tag, ...tag.attributes]) ?? [],
+ ...data.tags?.flatMap(tag => [tag, ...tag.attributes]) ?? [],
160
]) {
161
if (typeof item.references === 'string') {
162
const relativeUrl = item.references as string;
0 commit comments