mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Remove $if
, $min
and $max
from code node autocomplete (#6460)
fix(editor): Remove `$if`, $min` and `$max` from code node autocomplete
This commit is contained in:
parent
ad9fd12615
commit
16f707d5c4
|
@ -84,18 +84,6 @@ export const baseCompletions = (Vue as CodeNodeEditorMixin).extend({
|
||||||
label: `${prefix}jmespath()`,
|
label: `${prefix}jmespath()`,
|
||||||
info: this.$locale.baseText('codeNodeEditor.completer.$jmespath'),
|
info: this.$locale.baseText('codeNodeEditor.completer.$jmespath'),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: `${prefix}if()`,
|
|
||||||
info: this.$locale.baseText('codeNodeEditor.completer.$if'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: `${prefix}min()`,
|
|
||||||
info: this.$locale.baseText('codeNodeEditor.completer.$min'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: `${prefix}max()`,
|
|
||||||
info: this.$locale.baseText('codeNodeEditor.completer.$max'),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: `${prefix}runIndex`,
|
label: `${prefix}runIndex`,
|
||||||
info: this.$locale.baseText('codeNodeEditor.completer.$runIndex'),
|
info: this.$locale.baseText('codeNodeEditor.completer.$runIndex'),
|
||||||
|
|
Loading…
Reference in a new issue