fix(editor): Add $if, $min, $max to root expression autocomplete (#5858)

This commit is contained in:
OlegIvaniv
2023-03-31 11:37:25 +02:00
committed by GitHub
parent 4b11642a8c
commit a13866e233
3 changed files with 18 additions and 0 deletions

View File

@@ -79,6 +79,18 @@ export const baseCompletions = (Vue as CodeNodeEditorMixin).extend({
label: '$jmespath()',
info: this.$locale.baseText('codeNodeEditor.completer.$jmespath'),
},
{
label: '$if()',
info: this.$locale.baseText('codeNodeEditor.completer.$if'),
},
{
label: '$min()',
info: this.$locale.baseText('codeNodeEditor.completer.$min'),
},
{
label: '$max()',
info: this.$locale.baseText('codeNodeEditor.completer.$max'),
},
{
label: '$runIndex',
info: this.$locale.baseText('codeNodeEditor.completer.$runIndex'),