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 edf161a commit c418befCopy full SHA for c418bef
packages/language-service/lib/plugins/data.ts
@@ -154,7 +154,10 @@ export function loadModelModifiersData(lang: string): html.HTMLDataV1 {
154
function resolveReferences(data: html.HTMLDataV1) {
155
locale ??= require('../../data/locale.json');
156
157
- for (const item of [...data.globalAttributes ?? [], ...data.tags ?? []]) {
+ for (const item of [
158
+ ...data.globalAttributes ?? [],
159
+ ...data.tags?.flatMap((tag) => [tag, ...tag.attributes]) ?? [],
160
+ ]) {
161
if (typeof item.references === 'string') {
162
const relativeUrl = item.references as string;
163
item.references = locale.map(({ name, url }) => ({
0 commit comments