Skip to content

Commit

Permalink
fix prop completion [ckip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Nov 27, 2023
1 parent dabf16a commit 9cf5dd4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/language-core/src/generators/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1314,18 +1314,18 @@ export function generate(
let caps_attr: VueCodeInformation = presetInfos.attr;

if (mode === 'extraReferences') {
caps_all = {
caps_all = withAllDisabled({
references: caps_all.references,
renameEdits: caps_all.renameEdits,
};
caps_diagnosticOnly = {
});
caps_diagnosticOnly = withAllDisabled({
references: caps_diagnosticOnly.references,
renameEdits: caps_diagnosticOnly.renameEdits,
};
caps_attr = {
});
caps_attr = withAllDisabled({
references: caps_attr.references,
renameEdits: caps_attr.renameEdits,
};
});
}

codes.push(`...{ `);
Expand Down

0 comments on commit 9cf5dd4

Please sign in to comment.