We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e9d7f commit 022a1b1Copy full SHA for 022a1b1
src/languageservice/services/yamlCompletion.ts
@@ -1292,7 +1292,9 @@ export class YamlCompletion {
1292
let insertText = '';
1293
if (Array.isArray(schema.defaultSnippets) && schema.defaultSnippets.length === 1) {
1294
const body = schema.defaultSnippets[0].body;
1295
- if (isDefined(body)) {
+ // Jigx custom: we need to exclude templateRef
1296
+ if (isDefined(body) && !schema.defaultSnippets[0].label?.startsWith('templateRef')) {
1297
+ // end jigx custom
1298
let value = this.getInsertTextForSnippetValue(
1299
body,
1300
'',
0 commit comments