Skip to content

Commit 022a1b1

Browse files
committed
fix: exclude templateRef from property snippets
related to: #868d6m8nu
1 parent a5e9d7f commit 022a1b1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/languageservice/services/yamlCompletion.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1292,7 +1292,9 @@ export class YamlCompletion {
12921292
let insertText = '';
12931293
if (Array.isArray(schema.defaultSnippets) && schema.defaultSnippets.length === 1) {
12941294
const body = schema.defaultSnippets[0].body;
1295-
if (isDefined(body)) {
1295+
// Jigx custom: we need to exclude templateRef
1296+
if (isDefined(body) && !schema.defaultSnippets[0].label?.startsWith('templateRef')) {
1297+
// end jigx custom
12961298
let value = this.getInsertTextForSnippetValue(
12971299
body,
12981300
'',

0 commit comments

Comments
 (0)